diff --git a/azure-cli2017.pyproj b/azure-cli2017.pyproj index 99febce3a77..29fea5fd1e8 100644 --- a/azure-cli2017.pyproj +++ b/azure-cli2017.pyproj @@ -297,10 +297,12 @@ + + diff --git a/src/azure-cli/HISTORY.rst b/src/azure-cli/HISTORY.rst index d6aec87598c..2c4d9c9944a 100644 --- a/src/azure-cli/HISTORY.rst +++ b/src/azure-cli/HISTORY.rst @@ -11,6 +11,10 @@ Release History * Fix issue #11100: AttributeError for az webapp up when create service plan +**Backup** + +* Added Backup support for SQL and SAP Hana workload. + **Packaging** * Rewrite the az wrapper in python 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 77409ef3e5a..2f28e1953a6 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 @@ -54,6 +54,11 @@ def backup_storage_configs_cf(cli_ctx, *_): return _backup_client_factory(cli_ctx).backup_resource_storage_configs +# Protection Client Factories +def protection_intent_cf(cli_ctx, *_): + return _backup_client_factory(cli_ctx).protection_intent + + def protection_policies_cf(cli_ctx, *_): return _backup_client_factory(cli_ctx).protection_policies @@ -107,6 +112,10 @@ def backup_jobs_cf(cli_ctx, *_): return _backup_client_factory(cli_ctx).backup_jobs +def backup_workload_items_cf(cli_ctx, *_): + return _backup_client_factory(cli_ctx).backup_workload_items + + # Job Client Factories def job_details_cf(cli_ctx, *_): return _backup_client_factory(cli_ctx).job_details diff --git a/src/azure-cli/azure/cli/command_modules/backup/_format.py b/src/azure-cli/azure/cli/command_modules/backup/_format.py index 3683694f416..9bf11d931e9 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/_format.py +++ b/src/azure-cli/azure/cli/command_modules/backup/_format.py @@ -59,11 +59,28 @@ def transform_policy(result): def transform_recovery_point(result): + if result['properties']['objectType'][:13] == "AzureWorkload": + return OrderedDict([('Name', result['name']), + ('Time', result['properties']['recoveryPointTimeInUtc']), + ('BackupManagementType', 'AzureWorkload'), + ('Item Name', result['id'].split('/')[14]), + ('RecoveryPointType', result['properties']['type'])]) return OrderedDict([('Name', result['name']), ('Time', result['properties']['recoveryPointTime']), ('Consistency', result['properties']['recoveryPointType'])]) +def transform_protectable_item(result): + columns = [] + columns.append(('Name', result['name'])) + columns.append(('Protectable Item Type', result['properties']['protectableItemType'])) + columns.append(('ParentName', result['properties']['parentName'])) + columns.append(('ServerName', result['properties']['serverName'])) + columns.append(('isProtected', result['properties']['protectionState'])) + + return OrderedDict(columns) + + def transform_container_list(container_list): return [transform_container(c) for c in container_list] @@ -82,3 +99,7 @@ def transform_policy_list(policy_list): def transform_recovery_point_list(recovery_point_list): return [transform_recovery_point(rp) for rp in recovery_point_list] + + +def transform_protectable_item_list(protectable_item_list): + return [transform_protectable_item(i) for i in protectable_item_list] 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 a9748e77866..fac6ab2d4f5 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/_help.py +++ b/src/azure-cli/azure/cli/command_modules/backup/_help.py @@ -26,6 +26,22 @@ crafted: true """ +helps['backup container register'] = """ +type: command +short-summary: Register a Resource to the given Recovery Services Vault. +examples: + - name: This command allows Azure Backup to convert the 'Resource' to a 'Backup Container' which is then registered to the given Recovery services vault. The Azure Backup service can then discover workloads of the given workload type within this container to be protected later. + text: az backup container register --resource-group MyResourceGroup --vault-name MyVault --resource-id MyResourceId --workload-type MSSQL --backup-management-type AzureWorkload --resource-id MyResourceID +""" + +helps['backup container re-register'] = """ +type: command +short-summary: Reset the registration details for a given container. +examples: + - name: Reset the registration details for a given container. To be used only in error scenarios as specified here (https://docs.microsoft.com/azure/backup/backup-sql-server-azure-troubleshoot#re-registration-failures). Understand the failure symptoms and causes before attempting re-registration. + text: az backup container re-register --resource-group MyResourceGroup --vault-name MyVault --container-name MyContainer --workload-type MSSQL --backup-management-type AzureWorkload --yes +""" + helps['backup container show'] = """ type: command short-summary: Show details of a container registered to a Recovery services vault. @@ -181,7 +197,36 @@ short-summary: Create a new policy for the given BackupManagementType and workloadType. examples: - name: Create a new policy for the given BackupManagementType and workloadType. - text: az backup policy create --policy {policy} --resource-group MyResourceGroup --vault-name MyVault --name MyPolicy + text: az backup policy create --policy {policy} --resource-group MyResourceGroup --vault-name MyVault --name MyPolicy --backup-management-type AzureStorage +""" + +helps['backup protectable-item'] = """ +type: group +short-summary: Manage the item which is yet to be protected or backed up to an Azure Recovery services vault with an associated policy. +""" + +helps['backup protectable-item initialize'] = """ +type: command +short-summary: Trigger the discovery of any unprotected items of the given workload type in the given container. +examples: + - name: Trigger the discovery of any unprotected items of the given workload type in the given container. Use this command to manually discover new DBs and proceed to protect them. + text: az backup protectable-item initialize --resource-group MyResourceGroup --vault-name MyVault --workload-type MSSQL --container-name MyContainer +""" + +helps['backup protectable-item list'] = """ +type: command +short-summary: Retrieve all protectable items within a certain container or across all registered containers. +examples: + - name: Retrieve all protectable items within a certain container or across all registered containers. It consists of all the elements in the hierarchy of the application. Returns DBs and their upper tier entities like Instance, AvailabilityGroup etc. + text: az backup protectable-item list --resource-group MyResourceGroup --vault-name MyVault --workload-type MSSQL --container-name MyContainer +""" + +helps['backup protectable-item show'] = """ +type: command +short-summary: Retrieve the specified protectable item within the given container. +examples: + - name: Retrieve the specified protectable item within the given container. + text: az backup protectable-item show --resource-group MyResourceGroup --vault-name MyVault --workload-type MSSQL --protectable-item-type SQLAG --name Name --server-name MyServerName """ helps['backup protection'] = """ @@ -233,6 +278,51 @@ text: az backup protection enable-for-azurefileshare --policy-name MyPolicy --resource-group MyResourceGroup --vault-name MyVault --storage-account MyStorageAccount --azure-file-share MyAzureFileShare """ +helps['backup protection enable-for-azurewl'] = """ +type: command +short-summary: Start protecting a previously unprotected workload within an Azure VM as per the specified policy to a Recovery services vault. Provide the workload details as a protectable item. +examples: + - name: Start protecting a previously unprotected workload within an Azure VM as per the specified policy to a Recovery services vault. Provide the workload details as a protectable item. + text: az backup protection enable-for-azurewl --policy-name MyPolicy --resource-group MyResourceGroup --vault-name MyVault --protectable-item-name ItemName --protectable-item-type SQLInstance --server-name Myserver --workload-type MSSQL +""" + +helps['backup protection auto-enable-for-azurewl'] = """ +type: command +short-summary: Automatically protect all existing unprotected DBs and any DB which will be added later with the given policy. +examples: + - name: Automatically protect all existing unprotected DBs and any DB which will be added later with the given policy. Azure backup service will then regularly scan auto-protected containers for any new DBs and automatically protect them. + text: az backup protection auto-enable-for-azurewl --policy-name MyPolicy --resource-group MyResourceGroup --vault-name MyVault --protectable-item-name ItemName --protectable-item-type SQLInstance --server-name Myserver --workload-type MSSQL +""" + +helps['backup protection auto-disable-for-azurewl'] = """ +type: command +short-summary: Disable auto-protection for the specified item. +examples: + - name: Disable auto-protection for the specified item. + text: az backup protection auto-disable-for-azurewl --resource-group MyResourceGroup --vault-name MyVault --item-name MyItemName +""" + +helps['backup protection resume'] = """ +type: command +short-summary: Resume backup for the associated backup item. Use this to change the policy associated with the backup item. +examples: + - name: Resume backup for the associated backup item. Use this to change the policy associated with the backup item. + text: az backup protection resume --vault-name MyVault --resource-group MyResourceGroup --container-name MyContainer --item-name MyItem --policy-name MyPolicy +""" + +helps['backup recoveryconfig'] = """ +type: group +short-summary: Manage recovery configuration of an Azure workload backed up item. +""" + +helps['backup recoveryconfig show'] = """ +type: command +short-summary: Construct the recovery configuration of an Azure workload backed up item. +examples: + - name: Construct the recovery configuration of an Azure workload backed up item. The configuration object stores all details such as the recovery mode, target destinations for the restore and application specific parameters like target physical paths for SQL. + text: az backup recoveryconfig show --container-name MyContainer --item-name MyItem --resource-group MyResourceGroup --vault-name MyVault --restore-mode OriginalWorkloadRestore +""" + helps['backup recoverypoint'] = """ type: group short-summary: A snapshot of data at that point-of-time, stored in Recovery Services Vault, from which you can restore information. @@ -256,6 +346,14 @@ crafted: true """ +helps['backup recoverypoint show-log-chain'] = """ +type: command +short-summary: List the start and end points of the unbroken log chain(s) of the given backup item. +examples: + - name: List the start and end points of the unbroken log chain(s) of the given backup item. Use it to determine whether the point-in-time, to which the user wants the DB to be restored, is valid or not. + text: az backup recoverypoint show-log-chain --container-name MyContainer --item-name MyItem --resource-group MyResourceGroup --vault-name MyVault +""" + helps['backup restore'] = """ type: group short-summary: Restore backed up items from recovery points in a Recovery Services vault. @@ -309,6 +407,14 @@ text: az backup restore restore-azurefiles --resource-group MyResourceGroup --vault-name MyVault --container-name MyContainer --item-name MyItem --rp-name recoverypoint --resolve-conflict Overwrite --restore-mode OriginalLocation --source-file-type File --source-file-path MyPath """ +helps['backup restore restore-azurewl'] = """ +type: command +short-summary: Restore backed up Azure Workloads in a Recovery services vault to another registered container or to the same container. +examples: + - name: Restore backed up Azure Workloads in a Recovery services vault to another registered container or to the same container. + text: az backup restore restore-azurewl --resource-group MyResourceGroup --vault-name MyVault --recovery-config MyRecoveryConfig +""" + helps['backup vault'] = """ type: group short-summary: Online storage entity in Azure used to hold data such as backup copies, recovery points and backup policies. 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 2eaef37c628..4debba2904e 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/_params.py +++ b/src/azure-cli/azure/cli/command_modules/backup/_params.py @@ -21,14 +21,22 @@ # ARGUMENT DEFINITIONS allowed_container_types = ['AzureIaasVM'] -allowed_workload_types = ['VM', 'AzureFileShare'] -allowed_backup_management_types = ['AzureIaasVM', 'AzureStorage'] +allowed_workload_types = ['VM', 'AzureFileShare', 'SAPHANA', 'MSSQL', 'SAPHanaDatabase', 'SQLDataBase'] +allowed_backup_management_types = ['AzureIaasVM', 'AzureStorage', 'AzureWorkload'] +allowed_protectable_item_type = ['SQLAG', 'SQLInstance', 'SQLDatabase', 'HANAInstance', 'SAPHanaDatabase', 'SAPHanaSystem'] backup_management_type_help = """Specifiy the backup management type. Define how Azure Backup manages the backup of entities within the ARM resource. For eg: AzureWorkloads refers to workloads installed within Azure VMs, AzureStorage refers to entities within Storage account. Required only if friendly name is used as Container name.""" container_name_help = """Name of the backup container. Accepts 'Name' or 'FriendlyName' from the output of az backup container list command. If 'FriendlyName' is passed then BackupManagementType is required.""" workload_type_help = """Specifiy the type of applications within the Resource which should be discovered and protected by Azure Backup. """ -restore_mode_help = """Accepts OriginalLocation or AlternateLocation""" +restore_mode_help = """Specify the restore mode.""" resolve_conflict_help = "Instruction if there's a conflict with the restored data." +resource_id_help = """ID of the Azure Resource containing items to be protected by Azure Backup service. Currently, only Azure VM resource IDs are supported.""" +policy_help = """JSON encoded policy definition. Use the show command with JSON output to obtain a policy object. Modify the values using a file editor and pass the object.""" +target_server_type_help = """Specify the type of the server which should be discovered.""" +protectable_item_name_type_help = """Specify the resource name to be protected by Azure Backup service.""" +backup_type_help = """'Full, Differential, Log, Copy-only-full' for backup Item type 'MSSQL'. 'Full, Differential' for backup item type 'SAPHANA'.""" +retain_until_help = """The date until which this backed up copy will be available for retrieval, in UTC (d-m-Y). For SAPHANA and SQL workload, retain-until parameter value will be overridden by the underlying policy.""" + 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']) item_name_type = CLIArgumentType(help='Name of the backed up item.', options_list=['--item-name', '-i']) @@ -38,7 +46,13 @@ backup_management_type = CLIArgumentType(help=backup_management_type_help, arg_type=get_enum_type(allowed_backup_management_types), options_list=['--backup-management-type']) workload_type = CLIArgumentType(help=workload_type_help, arg_type=get_enum_type(allowed_workload_types), options_list=['--workload-type']) restore_mode_type = CLIArgumentType(help=restore_mode_help, arg_type=get_enum_type(['OriginalLocation', 'AlternateLocation']), options_list=['--restore-mode']) +restore_mode_workload_type = CLIArgumentType(help=restore_mode_help, arg_type=get_enum_type(['AlternateWorkloadRestore', 'OriginalWorkloadRestore']), options_list=['--restore-mode']) resolve_conflict_type = CLIArgumentType(help=resolve_conflict_help, arg_type=get_enum_type(['Overwrite', 'Skip']), options_list=['--resolve-conflict']) +resource_id_type = CLIArgumentType(help=resource_id_help, options_list=['--resource-id']) +policy_type = CLIArgumentType(help=policy_help, options_list=['--policy'], completer=FilesCompleter(), type=file_type) +protectable_item_type = CLIArgumentType(help=workload_type_help, options_list=['--protectable-item-type'], arg_type=get_enum_type(allowed_protectable_item_type)) +target_server_type = CLIArgumentType(help=target_server_type_help, options_list=['--target-server-type'], arg_type=get_enum_type(allowed_protectable_item_type)) +protectable_item_name_type = CLIArgumentType(help=protectable_item_name_type_help, options_list=['--protectable-item-name']) # pylint: disable=too-many-statements @@ -71,6 +85,16 @@ def load_arguments(self, _): c.argument('backup_management_type', backup_management_type) c.argument('container_name', container_name_type) + with self.argument_context('backup container re-register') as c: + c.argument('backup_management_type', backup_management_type) + c.argument('container_name', container_name_type) + c.argument('workload_type', workload_type) + + with self.argument_context('backup container register') as c: + c.argument('backup_management_type', backup_management_type) + c.argument('resource_id', resource_id_type) + c.argument('workload_type', workload_type) + # Item with self.argument_context('backup item') as c: c.argument('vault_name', vault_name_type, id_part='name') @@ -108,6 +132,8 @@ def load_arguments(self, _): with self.argument_context('backup policy create') as c: c.argument('policy', type=file_type, help='JSON encoded policy definition. Use the show command with JSON output to obtain a policy object. Modify the values using a file editor and pass the object.', completer=FilesCompleter()) c.argument('name', options_list=['--name', '-n'], help='Name of the Policy.') + c.argument('backup_management_type', backup_management_type) + c.argument('workload_type', workload_type) with self.argument_context('backup policy list') as c: c.argument('vault_name', vault_name_type, id_part=None) @@ -121,13 +147,14 @@ def load_arguments(self, _): c.argument('container_name', container_name_type) c.argument('item_name', item_name_type) - with self.argument_context('backup recoverypoint list') as c: - c.argument('vault_name', vault_name_type, id_part=None) - c.argument('start_date', type=datetime_type, help='The start date of the range in UTC (d-m-Y).') - c.argument('end_date', type=datetime_type, help='The end date of the range in UTC (d-m-Y).') - c.argument('backup_management_type', backup_management_type) - c.argument('container_name', container_name_type) - c.argument('workload_type', workload_type) + for command in ['list', 'show-log-chain']: + with self.argument_context('backup recoverypoint ' + command) as c: + c.argument('vault_name', vault_name_type, id_part=None) + c.argument('start_date', type=datetime_type, help='The start date of the range in UTC (d-m-Y).') + c.argument('end_date', type=datetime_type, help='The end date of the range in UTC (d-m-Y).') + c.argument('backup_management_type', backup_management_type) + c.argument('container_name', container_name_type) + c.argument('workload_type', workload_type) with self.argument_context('backup recoverypoint show') as c: c.argument('name', rp_name_type, options_list=['--name', '-n'], help='Name of the recovery point. You can use the backup recovery point list command to get the name of a backed up item.') @@ -142,15 +169,17 @@ def load_arguments(self, _): c.argument('policy_name', policy_name_type) # TODO: Need to use item.id once https://github.com/Azure/msrestazure-for-python/issues/80 is fixed. - for command in ['backup-now', 'disable']: + for command in ['backup-now', 'disable', 'auto-disable-for-azurewl', 'resume']: with self.argument_context('backup protection ' + command) as c: c.argument('container_name', container_name_type) c.argument('item_name', item_name_type) c.argument('backup_management_type', backup_management_type) c.argument('workload_type', workload_type) + c.argument('enable_compression', arg_type=get_three_state_flag(), help='Option to enable compression') + c.argument('backup_type', help=backup_type_help, options_list=['--backup-type']) with self.argument_context('backup protection backup-now') as c: - c.argument('retain_until', type=datetime_type, help='The date until which this backed up copy will be available for retrieval, in UTC (d-m-Y).') + c.argument('retain_until', type=datetime_type, help=retain_until_help) with self.argument_context('backup protection disable') as c: c.argument('delete_backup_data', arg_type=get_three_state_flag(), help='Option to delete existing backed up data in the Recovery services vault.') @@ -164,6 +193,24 @@ def load_arguments(self, _): c.argument('azure_file_share', options_list=['--azure-file-share'], help='Name of the Azure FileShare.') c.argument('storage_account', options_list=['--storage-account'], help='Name of the Storage Account of the FileShare.') + for command in ["enable-for-azurewl", "auto-enable-for-azurewl"]: + with self.argument_context('backup protection ' + command) as c: + c.argument('protectable_item_type', protectable_item_type) + c.argument('protectable_item_name', protectable_item_name_type) + c.argument('server_name', options_list=['--server-name'], help='Parent Server name of the item.') + c.argument('workload_type', workload_type) + + # Protectable-item + with self.argument_context('backup protectable-item') as c: + c.argument('vault_name', vault_name_type) + c.argument('workload_type', workload_type) + c.argument('container_name', container_name_type) + + with self.argument_context('backup protectable-item show') as c: + c.argument('name', options_list=['--name'], help='Name of the protectable item.') + c.argument('server_name', options_list=['--server-name'], help='Parent Server name of the item.') + c.argument('protectable_item_type', protectable_item_type) + # Restore # TODO: Need to use recovery_point.id once https://github.com/Azure/msrestazure-for-python/issues/80 is fixed. with self.argument_context('backup restore') as c: @@ -193,6 +240,21 @@ def load_arguments(self, _): c.argument('source_file_type', arg_type=get_enum_type(['File', 'Directory']), options_list=['--source-file-type'], help='Specify the source file type to be selected') c.argument('source_file_path', options_list=['--source-file-path'], help="""The absolute path of the file, to be restored within the file share, as a string. This path is the same path used in the 'az storage file download' or 'az storage file show' CLI commands.""") + with self.argument_context('backup restore restore-azurewl') as c: + c.argument('recovery_config', options_list=['--recovery-config'], help="""Specify the recovery configuration of a backed up item. The configuration object can be obtained from 'backup recoveryconfig show' command.""") + + # Recoveryconfig + with self.argument_context('backup recoveryconfig show') as c: + c.argument('container_name', container_name_type) + c.argument('item_name', item_name_type) + c.argument('restore_mode', restore_mode_workload_type) + c.argument('vault_name', vault_name_type) + c.argument('log_point_in_time', options_list=['--log-point-in-time'], help="""Specify the point-in-time which will be restored.""") + c.argument('rp_name', rp_name_type) + c.argument('target_item_name', options_list=['--target-item-name'], help="""Specify the target item name for the restore operation.""") + c.argument('target_server_type', target_server_type) + c.argument('target_server_name', options_list=['--target-server-name'], help="""Specify the parent server name of the target item.""") + c.argument('workload_type', workload_type) # Job with self.argument_context('backup job') as c: c.argument('vault_name', vault_name_type, id_part='name') 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 75679bd3ae0..74242bed0da 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/commands.py +++ b/src/azure-cli/azure/cli/command_modules/backup/commands.py @@ -7,11 +7,11 @@ from azure.cli.command_modules.backup._client_factory import vaults_cf, backup_protection_containers_cf, \ 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, \ - protection_containers_cf # pylint: disable=unused-variable + item_level_recovery_connections_cf, backup_protected_items_cf, backup_protectable_items_cf, \ + protection_containers_cf, protection_intent_cf # pylint: disable=unused-variable from azure.cli.command_modules.backup._format import ( transform_container_list, transform_policy_list, transform_item_list, transform_job_list, - transform_recovery_point_list, transform_container, transform_item) + transform_recovery_point_list, transform_container, transform_item, transform_protectable_item_list) # pylint: disable=line-too-long @@ -44,6 +44,8 @@ def load_command_table(self, _): with self.command_group('backup container', custom_command_type=backup_custom_base, client_factory=protection_containers_cf) as g: g.custom_command('unregister', 'unregister_container', confirmation=True) + g.custom_command('re-register', 're_register_wl_container', confirmation=True) + g.custom_command('register', 'register_wl_container') with self.command_group('backup policy', backup_custom_base, client_factory=protection_policies_cf) as g: g.command('get-default-for-vm', 'get_default_policy_for_vm') @@ -64,12 +66,21 @@ def load_command_table(self, _): g.custom_command('backup-now', 'backup_now', client_factory=backups_cf) g.custom_command('disable', 'disable_protection', confirmation=True) g.custom_command('enable-for-azurefileshare', 'enable_for_azurefileshare') + g.custom_command('enable-for-azurewl', 'enable_protection_for_azure_wl') + g.custom_command('auto-enable-for-azurewl', 'auto_enable_for_azure_wl', client_factory=protection_intent_cf) + g.custom_command('auto-disable-for-azurewl', 'disable_auto_for_azure_wl', client_factory=protection_intent_cf) + g.custom_command('resume', 'resume_protection') with self.command_group('backup item', backup_custom_base, client_factory=protected_items_cf) as g: g.show_command('show', 'show_item', client_factory=backup_protected_items_cf, table_transformer=transform_item) g.command('list', 'list_items', table_transformer=transform_item_list, client_factory=backup_protected_items_cf) g.command('set-policy', 'update_policy_for_item') + with self.command_group('backup protectable-item', backup_custom_base, client_factory=backup_protectable_items_cf) as g: + g.show_command('show', 'show_protectable_item') + g.command('list', 'list_protectable_items', table_transformer=transform_protectable_item_list) + g.command('initialize', 'initialize_protectable_items', client_factory=protection_containers_cf) + with self.command_group('backup job', backup_custom, client_factory=job_details_cf) as g: g.command('list', 'list_jobs', client_factory=backup_jobs_cf, table_transformer=transform_job_list) g.show_command('show', 'show_job') @@ -79,6 +90,7 @@ def load_command_table(self, _): with self.command_group('backup recoverypoint', backup_custom_base, client_factory=recovery_points_cf) as g: g.show_command('show', 'show_recovery_point') g.command('list', 'list_recovery_points', table_transformer=transform_recovery_point_list) + g.show_command('show-log-chain', 'list_recovery_points') with self.command_group('backup restore', backup_custom_base, client_factory=restores_cf) as g: g.command('restore-disks', 'restore_disks') @@ -86,10 +98,14 @@ def load_command_table(self, _): with self.command_group('backup restore', custom_command_type=backup_custom_base, client_factory=restores_cf) as g: g.custom_command('restore-azurefileshare', 'restore_azurefileshare') g.custom_command('restore-azurefiles', 'restore_azurefiles') + g.custom_command('restore-azurewl', 'restore_azure_wl') with self.command_group('backup restore files', backup_custom, client_factory=item_level_recovery_connections_cf) as g: g.command('mount-rp', 'restore_files_mount_rp') g.command('unmount-rp', 'restore_files_unmount_rp') + with self.command_group('backup recoveryconfig', backup_custom_base, client_factory=recovery_points_cf) as g: + g.show_command('show', 'show_recovery_config') + with self.command_group('backup', is_preview=True): pass 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 f6c613a2f7f..6a549155627 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/custom.py +++ b/src/azure-cli/azure/cli/command_modules/backup/custom.py @@ -115,7 +115,7 @@ def list_associated_items_for_policy(client, resource_group_name, vault_name, na return _get_list_from_paged_response(items) -def set_policy(client, resource_group_name, vault_name, policy): +def set_policy(client, resource_group_name, vault_name, policy, policy_name): policy_object = _get_policy_from_json(client, policy) retention_range_in_days = policy_object.properties.instant_rp_retention_range_in_days schedule_run_frequency = policy_object.properties.schedule_policy.schedule_run_frequency @@ -148,7 +148,9 @@ def set_policy(client, resource_group_name, vault_name, policy): logger.error(error_message) else: policy_object.properties.instant_rp_retention_range_in_days = 2 - return client.create_or_update(vault_name, resource_group_name, policy_object.name, policy_object) + if policy_name is None: + policy_name = policy_object.name + return client.create_or_update(vault_name, resource_group_name, policy_name, policy_object) def delete_policy(client, resource_group_name, vault_name, name): 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 77b606912e5..1093bac7fff 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 @@ -7,8 +7,9 @@ import azure.cli.command_modules.backup.custom_afs as custom_afs import azure.cli.command_modules.backup.custom_help as custom_help import azure.cli.command_modules.backup.custom_common as common +import azure.cli.command_modules.backup.custom_wl as custom_wl from azure.cli.command_modules.backup._client_factory import protection_policies_cf, backup_protected_items_cf, \ - backup_protection_containers_cf + backup_protection_containers_cf, backup_protectable_items_cf from azure.cli.core.util import CLIError # pylint: disable=import-error @@ -32,8 +33,14 @@ def list_policies(client, resource_group_name, vault_name, workload_type=None, b return common.list_policies(client, resource_group_name, vault_name, workload_type, backup_management_type) -def create_policy(client, resource_group_name, vault_name, name, policy): - return custom_afs.create_policy(client, resource_group_name, vault_name, name, policy) +def create_policy(client, resource_group_name, vault_name, name, policy, backup_management_type, workload_type=None): + if backup_management_type.lower() == "azurestorage": + return custom_afs.create_policy(client, resource_group_name, vault_name, name, policy) + if backup_management_type.lower() == "azureworkload": + if workload_type is None: + raise CLIError("Please provide workload type.") + return custom_wl.create_policy(client, resource_group_name, vault_name, name, policy, workload_type) + return None def show_item(cmd, client, resource_group_name, vault_name, container_name, name, backup_management_type=None, @@ -73,12 +80,15 @@ def list_recovery_points(cmd, client, resource_group_name, vault_name, container if item.properties.backup_management_type.lower() == "azurestorage": return custom_afs.list_recovery_points(client, resource_group_name, vault_name, item, start_date, end_date) + if item.properties.backup_management_type.lower() == "azureworkload": + return custom_wl.list_wl_recovery_points(cmd, client, resource_group_name, vault_name, item, + start_date, end_date) return None -def backup_now(cmd, client, resource_group_name, vault_name, item_name, retain_until, container_name=None, - backup_management_type=None, workload_type=None): +def backup_now(cmd, client, resource_group_name, vault_name, item_name, retain_until=None, container_name=None, + backup_management_type=None, workload_type=None, backup_type=None, enable_compression=False): items_client = backup_protected_items_cf(cmd.cli_ctx) item = show_item(cmd, items_client, resource_group_name, vault_name, container_name, item_name, @@ -94,6 +104,9 @@ def backup_now(cmd, client, resource_group_name, vault_name, item_name, retain_u if item.properties.backup_management_type.lower() == "azurestorage": return custom_afs.backup_now(cmd, client, resource_group_name, vault_name, item, retain_until) + if item.properties.backup_management_type.lower() == "azureworkload": + return custom_wl.backup_now(cmd, client, resource_group_name, vault_name, item, retain_until, + backup_type, enable_compression) return None @@ -114,6 +127,8 @@ def disable_protection(cmd, client, resource_group_name, vault_name, item_name, if item.properties.backup_management_type.lower() == "azurestorage": return custom_afs.disable_protection(cmd, client, resource_group_name, vault_name, item, delete_backup_data, **kwargs) + if item.properties.backup_management_type.lower() == "azureworkload": + return custom_wl.disable_protection(cmd, client, resource_group_name, vault_name, item, delete_backup_data) return None @@ -136,15 +151,20 @@ def update_policy_for_item(cmd, client, resource_group_name, vault_name, contain if item.properties.backup_management_type.lower() == "azurestorage": return custom_afs.update_policy_for_item(cmd, client, resource_group_name, vault_name, item, policy) + + if item.properties.backup_management_type.lower() == "azureworkload": + return custom_wl.update_policy_for_item(cmd, client, resource_group_name, vault_name, item, policy) return None def set_policy(client, resource_group_name, vault_name, policy, name=None): policy_object = custom_help.get_policy_from_json(client, policy) if policy_object.properties.backup_management_type.lower() == "azureiaasvm": - return custom.set_policy(client, resource_group_name, vault_name, policy) + return custom.set_policy(client, resource_group_name, vault_name, policy, name) if policy_object.properties.backup_management_type.lower() == "azurestorage": return custom_afs.set_policy(client, resource_group_name, vault_name, policy, name) + if policy_object.properties.backup_management_type == "AzureWorkload": + return custom_wl.set_policy(client, resource_group_name, vault_name, policy, name) return None @@ -160,13 +180,63 @@ def list_associated_items_for_policy(client, resource_group_name, vault_name, na return custom.list_associated_items_for_policy(client, resource_group_name, vault_name, name) +def list_protectable_items(cmd, client, resource_group_name, vault_name, workload_type, container_name=None): + container_uri = None + if container_name: + if custom_help.is_native_name(container_name): + container_uri = container_name + else: + container_client = backup_protection_containers_cf(cmd.cli_ctx) + container = show_container(cmd, container_client, container_name, resource_group_name, vault_name, + "AzureWorkload") + custom_help.validate_container(container) + container_uri = container.name + return custom_wl.list_protectable_items(client, resource_group_name, vault_name, workload_type, container_uri) + + +def show_protectable_item(cmd, client, resource_group_name, vault_name, name, server_name, protectable_item_type, + workload_type): + items = list_protectable_items(cmd, client, resource_group_name, vault_name, workload_type) + return custom_wl.show_protectable_item(items, name, server_name, protectable_item_type) + + +def show_protectable_instance(cmd, client, resource_group_name, vault_name, server_name, protectable_item_type, + workload_type, container_name=None): + items = list_protectable_items(cmd, client, resource_group_name, vault_name, workload_type, container_name) + return custom_wl.show_protectable_instance(items, server_name, protectable_item_type) + + +def initialize_protectable_items(client, resource_group_name, vault_name, container_name, workload_type): + return custom_wl.initialize_protectable_items(client, resource_group_name, vault_name, container_name, + workload_type) + + def unregister_container(cmd, client, vault_name, resource_group_name, container_name, backup_management_type=None): - containrs_client = backup_protection_containers_cf(cmd.cli_ctx) - container = show_container(cmd, containrs_client, container_name, resource_group_name, vault_name, - backup_management_type) + container = None + container_type = custom_help.validate_and_extract_container_type(container_name, backup_management_type) + if not custom_help.is_native_name(container_name): + containrs_client = backup_protection_containers_cf(cmd.cli_ctx) + container = show_container(cmd, containrs_client, container_name, resource_group_name, vault_name, + backup_management_type) + container_name = container.name + + if container_type.lower() == "azurestorage": + return custom_afs.unregister_afs_container(cmd, client, vault_name, resource_group_name, container_name) + if container_type.lower() == "azureworkload": + return custom_wl.unregister_wl_container(cmd, client, vault_name, resource_group_name, container_name) + return None + + +def register_wl_container(cmd, client, vault_name, resource_group_name, workload_type, resource_id, + backup_management_type="AzureWorkload"): + return custom_wl.register_wl_container(cmd, client, vault_name, resource_group_name, workload_type, + resource_id, backup_management_type) - if container.properties.backup_management_type.lower() == "azurestorage": - custom_afs.unregister_afs_container(cmd, client, vault_name, resource_group_name, container.name) + +def re_register_wl_container(cmd, client, vault_name, resource_group_name, workload_type, container_name, + backup_management_type="AzureWorkload"): + return custom_wl.re_register_wl_container(cmd, client, vault_name, resource_group_name, workload_type, + container_name, backup_management_type) def check_protection_enabled_for_vm(cmd, vm_id): @@ -177,6 +247,30 @@ def enable_protection_for_vm(cmd, client, resource_group_name, vault_name, vm, p return custom.enable_protection_for_vm(cmd, client, resource_group_name, vault_name, vm, policy_name) +def enable_protection_for_azure_wl(cmd, client, resource_group_name, vault_name, policy_name, protectable_item_type, + protectable_item_name, server_name, workload_type): + protectable_items_client = backup_protectable_items_cf(cmd.cli_ctx) + protectable_item = show_protectable_item(cmd, protectable_items_client, resource_group_name, vault_name, + protectable_item_name, server_name, protectable_item_type, workload_type) + policy_object = show_policy(protection_policies_cf(cmd.cli_ctx), resource_group_name, vault_name, policy_name) + return custom_wl.enable_protection_for_azure_wl(cmd, client, resource_group_name, vault_name, policy_object, + protectable_item) + + +def auto_enable_for_azure_wl(cmd, client, resource_group_name, vault_name, policy_name, protectable_item_name, + protectable_item_type, server_name, workload_type): + policy_object = show_policy(protection_policies_cf(cmd.cli_ctx), resource_group_name, vault_name, policy_name) + protectable_items_client = backup_protectable_items_cf(cmd.cli_ctx) + protectable_item = show_protectable_item(cmd, protectable_items_client, resource_group_name, vault_name, + protectable_item_name, server_name, protectable_item_type, workload_type) + return custom_wl.auto_enable_for_azure_wl(client, resource_group_name, vault_name, policy_object, + protectable_item) + + +def disable_auto_for_azure_wl(client, resource_group_name, vault_name, item_name): + return custom_wl.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): return custom.restore_disks(cmd, client, resource_group_name, vault_name, container_name, item_name, rp_name, @@ -241,7 +335,28 @@ def resume_protection(cmd, client, resource_group_name, vault_name, container_na policy = show_policy(protection_policies_cf(cmd.cli_ctx), resource_group_name, vault_name, policy_name) custom_help.validate_policy(policy) - return custom_afs.resume_protection(cmd, client, resource_group_name, vault_name, item, policy) + if item.properties.backup_management_type.lower() == "azurestorage": + return custom_afs.resume_protection(cmd, client, resource_group_name, vault_name, item, policy) + if item.properties.backup_management_type.lower() == "azureworkload": + return custom_wl.resume_protection(cmd, client, resource_group_name, vault_name, item, policy) + return None + + +def restore_azure_wl(cmd, client, resource_group_name, vault_name, recovery_config): + return custom_wl.restore_azure_wl(cmd, client, resource_group_name, vault_name, recovery_config) + + +def show_recovery_config(cmd, client, resource_group_name, vault_name, restore_mode, container_name, item_name, + rp_name=None, target_item_name=None, log_point_in_time=None, target_server_type=None, + target_server_name=None, workload_type=None): + target_item = None + if target_item_name is not None: + protectable_items_client = backup_protectable_items_cf(cmd.cli_ctx) + target_item = show_protectable_instance(cmd, protectable_items_client, resource_group_name, vault_name, + target_server_name, target_server_type, + workload_type, container_name) + return custom_wl.show_recovery_config(cmd, client, resource_group_name, vault_name, restore_mode, container_name, + item_name, rp_name, target_item, target_item_name, log_point_in_time) def _get_containers(client, container_type, status, resource_group_name, vault_name, container_name=None): diff --git a/src/azure-cli/azure/cli/command_modules/backup/custom_help.py b/src/azure-cli/azure/cli/command_modules/backup/custom_help.py index 7f0fd7cf9ed..022e0e06f27 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/custom_help.py +++ b/src/azure-cli/azure/cli/command_modules/backup/custom_help.py @@ -113,6 +113,15 @@ def validate_object(obj, error_message): raise ValueError(error_message) +def get_target_path(resource_type, path, logical_name, data_directory_paths): + for filepath in data_directory_paths: + if filepath.type == resource_type: + data_directory_path = filepath + file_type = path.split('\\')[-1].split('.')[1] + file_name = logical_name + '_' + str(int(time.time())) + '.' + file_type + return data_directory_path.path + file_name + + # Tracking Utilities # pylint: disable=inconsistent-return-statements def track_backup_ilr(cli_ctx, result, vault_name, resource_group): diff --git a/src/azure-cli/azure/cli/command_modules/backup/custom_wl.py b/src/azure-cli/azure/cli/command_modules/backup/custom_wl.py new file mode 100644 index 00000000000..a16c476e693 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/custom_wl.py @@ -0,0 +1,604 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import azure.cli.command_modules.backup.custom_help as cust_help +import azure.cli.command_modules.backup.custom_common as common +# pylint: disable=import-error +# pylint: disable=broad-except + +from uuid import uuid4 +from azure.cli.command_modules.backup._validators import datetime_type + +from azure.mgmt.recoveryservicesbackup.models import AzureVMAppContainerProtectionContainer, \ + AzureWorkloadBackupRequest, ProtectedItemResource, AzureRecoveryServiceVaultProtectionIntent, TargetRestoreInfo, \ + RestoreRequestResource, BackupRequestResource, ProtectionIntentResource, SQLDataDirectoryMapping, \ + ProtectionContainerResource, AzureWorkloadSAPHanaRestoreRequest, AzureWorkloadSQLRestoreRequest, \ + AzureWorkloadSAPHanaPointInTimeRestoreRequest, AzureWorkloadSQLPointInTimeRestoreRequest, \ + AzureVmWorkloadSAPHanaDatabaseProtectedItem, AzureVmWorkloadSQLDatabaseProtectedItem + +from azure.cli.core.util import CLIError, sdk_no_wait +from azure.cli.command_modules.backup._client_factory import backup_workload_items_cf, \ + protectable_containers_cf, backup_protection_containers_cf, backup_protected_items_cf + +from knack.log import get_logger + +fabric_name = "Azure" +logger = get_logger(__name__) + +# Mapping of workload type +workload_type_map = {'MSSQL': 'SQLDataBase', + 'SAPHANA': 'SAPHanaDatabase', + 'SAPASE': 'SAPAseDatabase'} + +# Mapping of module name +module_map = {'sqldatabase': 'sql_database', + 'saphanadatabase': 'sap_hana_database', + 'sapasedatabase': 'sap_ase_database'} + +# Mapping of attribute name +attr_map = {'sqldatabase': 'SQLDatabase', + 'saphanadatabase': 'SAPHanaDatabase', + 'sapasedatabase': 'SAPAseDatabase'} + +protectable_item_type_map = {'SQLDatabase': 'SQLDataBase', + 'HANADataBase': 'SAPHanaDatabase', + 'HANAInstance': 'SAPHanaSystem', + 'SQLInstance': 'SQLInstance', + 'SQLAG': 'SQLAG'} + + +def show_wl_policy(client, resource_group_name, vault_name, name): + return [client.get(vault_name, resource_group_name, name)] + + +def list_wl_policies(client, resource_group_name, vault_name, workload_type, backup_management_type): + if workload_type is None: + raise CLIError( + """ + Workload type is required for Azure Workload. + """) + + if backup_management_type is None: + raise CLIError( + """ + Backup Management Type needs to be specified for Azure Workload. + """) + + workload_type = workload_type_map[workload_type] + + filter_string = cust_help.get_filter_string({ + 'backupManagementType': backup_management_type, + 'workloadType': workload_type}) + + policies = client.list(vault_name, resource_group_name, filter_string) + return cust_help.get_list_from_paged_response(policies) + + +def list_protectable_containers(cmd, resource_group_name, vault_name, container_type="AzureWorkload"): + filter_string = cust_help.get_filter_string({ + 'backupManagementType': container_type}) + client = protectable_containers_cf(cmd.cli_ctx) + paged_containers = client.list(vault_name, resource_group_name, fabric_name, filter_string) + return cust_help.get_list_from_paged_response(paged_containers) + + +def register_wl_container(cmd, client, vault_name, resource_group_name, workload_type, resource_id, container_type): + if not cust_help.is_id(resource_id): + raise CLIError( + """ + Resource ID is not a valid one. + """) + + workload_type = workload_type_map[workload_type] + container_name = resource_id.split('/')[-1] + + containers = list_protectable_containers(cmd, resource_group_name, vault_name) + + for container in containers: + if cust_help.get_resource_id(container.properties.container_id) == cust_help.get_resource_id(resource_id): + container_name = container.name + break + + if not cust_help.is_native_name(container_name): + raise CLIError( + """ + Container unavailable or already registered. + """) + + properties = AzureVMAppContainerProtectionContainer(backup_management_type=container_type, + source_resource_id=resource_id, + workload_type=workload_type) + param = ProtectionContainerResource(properties=properties) + + # Trigger register and wait for completion + result = sdk_no_wait(True, client.register, + vault_name, resource_group_name, fabric_name, container_name, param) + return cust_help.track_register_operation(cmd.cli_ctx, result, vault_name, resource_group_name, container_name) + + +def re_register_wl_container(cmd, client, vault_name, resource_group_name, workload_type, + container_name, container_type): + workload_type = workload_type_map[workload_type] + + if not cust_help.is_native_name(container_name): + raise CLIError( + """ + Container name passed cannot be a friendly name. + Please pass a native container name. + """) + + backup_cf = backup_protection_containers_cf(cmd.cli_ctx) + containers = common.list_containers(backup_cf, resource_group_name, vault_name, container_type) + source_resource_id = None + + for container in containers: + if container.name == container_name: + source_resource_id = container.properties.source_resource_id + break + + if not source_resource_id: + raise CLIError( + """ + No such registered container exists. + """) + properties = AzureVMAppContainerProtectionContainer(backup_management_type=container_type, + workload_type=workload_type, + operation_type='Reregister', + source_resource_id=source_resource_id) + param = ProtectionContainerResource(properties=properties) + # Trigger register and wait for completion + result = sdk_no_wait(True, client.register, + vault_name, resource_group_name, fabric_name, container_name, param) + return cust_help.track_register_operation(cmd.cli_ctx, result, vault_name, resource_group_name, container_name) + + +def unregister_wl_container(cmd, client, vault_name, resource_group_name, container_name): + if not cust_help.is_native_name(container_name): + raise CLIError( + """ + Container name passed cannot be a friendly name. + Please pass a native container name. + """) + + # Trigger unregister and wait for completion + result = sdk_no_wait(True, client.unregister, + vault_name, resource_group_name, fabric_name, container_name) + return cust_help.track_register_operation(cmd.cli_ctx, result, vault_name, resource_group_name, container_name) + + +def update_policy_for_item(cmd, client, resource_group_name, vault_name, item, policy): + if item.properties.backup_management_type != policy.properties.backup_management_type: + raise CLIError( + """ + The policy type should match with the workload being protected. + Use the relevant get-default policy command and use it to update the policy for the workload. + """) + item_properties = item.properties + item_properties.policy_id = policy.id + + container_uri = cust_help.get_protection_container_uri_from_id(item.id) + item_uri = cust_help.get_protected_item_uri_from_id(item.id) + + param = ProtectedItemResource(properties=item_properties) + + # Update policy + result = sdk_no_wait(True, client.create_or_update, + vault_name, resource_group_name, fabric_name, container_uri, item_uri, param) + return cust_help.track_backup_job(cmd.cli_ctx, result, vault_name, resource_group_name) + + +def resume_protection(cmd, client, resource_group_name, vault_name, item, policy): + return update_policy_for_item(cmd, client, resource_group_name, vault_name, item, policy) + + +def initialize_protectable_items(client, resource_group_name, vault_name, container_name, workload_type): + workload_type = workload_type_map[workload_type] + + filter_string = cust_help.get_filter_string({ + 'backupManagementType': 'AzureWorkload', + 'workloadType': workload_type}) + + return client.inquire(vault_name, resource_group_name, fabric_name, container_name, filter_string) + + +def create_policy(client, resource_group_name, vault_name, policy_name, policy, workload_type): + workload_type = workload_type_map[workload_type] + policy_object = cust_help.get_policy_from_json(client, policy) + policy_object.properties.backup_management_type = "AzureWorkload" + policy_object.properties.workload_type = workload_type + policy_object.name = policy_name + + return client.create_or_update(vault_name, resource_group_name, policy_name, policy_object) + + +def set_policy(client, resource_group_name, vault_name, policy, policy_name): + if policy_name is None: + raise CLIError( + """ + Policy name is required for set policy. + """) + + policy_object = cust_help.get_policy_from_json(client, policy) + + return client.create_or_update(vault_name, resource_group_name, policy_name, policy_object) + + +def show_protectable_item(items, name, server_name, protectable_item_type): + if protectable_item_type_map.get(protectable_item_type) is not None: + protectable_item_type = protectable_item_type_map[protectable_item_type] + # Name filter + if cust_help.is_native_name(name): + filtered_items = [item for item in items if item.name.lower() == name.lower()] + else: + filtered_items = [item for item in items if item.properties.friendly_name.lower() == name.lower()] + + # Server Name filter + filtered_items = [item for item in filtered_items if item.properties.server_name.lower() == server_name.lower()] + + # Protectable Item Type filter + filtered_items = [item for item in filtered_items if + item.properties.protectable_item_type.lower() == protectable_item_type.lower()] + + return cust_help.get_none_one_or_many(filtered_items) + + +def show_protectable_instance(items, server_name, protectable_item_type): + if protectable_item_type_map.get(protectable_item_type) is not None: + protectable_item_type = protectable_item_type_map[protectable_item_type] + # Server Name filter + filtered_items = [item for item in items if item.properties.server_name.lower() == server_name.lower()] + + # Protectable Item Type filter + filtered_items = [item for item in filtered_items if + item.properties.protectable_item_type.lower() == protectable_item_type.lower()] + + return cust_help.get_none_one_or_many(filtered_items) + + +def list_protectable_items(client, resource_group_name, vault_name, workload_type, container_uri=None): + workload_type = workload_type_map[workload_type] + + filter_string = cust_help.get_filter_string({ + 'backupManagementType': "AzureWorkload", + 'workloadType': workload_type}) + + # Items list + items = client.list(vault_name, resource_group_name, filter_string) + paged_items = cust_help.get_list_from_paged_response(items) + + if container_uri: + return [item for item in paged_items if + cust_help.get_protection_container_uri_from_id(item.id).lower() == container_uri.lower()] + return paged_items + + +def list_wl_recovery_points(cmd, client, resource_group_name, vault_name, item, start_date=None, end_date=None, + extended_info=None): + # Get container and item URIs + container_uri = cust_help.get_protection_container_uri_from_id(item.id) + item_uri = cust_help.get_protected_item_uri_from_id(item.id) + + query_end_date, query_start_date = cust_help.get_query_dates(end_date, start_date) + + if query_end_date and query_start_date: + cust_help.is_range_valid(query_start_date, query_end_date) + + filter_string = cust_help.get_filter_string({ + 'startDate': query_start_date, + 'endDate': query_end_date}) + + if cmd.name.split()[2] == 'show-log-chain' or extended_info is not None: + filter_string = cust_help.get_filter_string({ + 'restorePointQueryType': 'Log', + 'startDate': query_start_date, + 'endDate': query_end_date, + 'extendedInfo': extended_info}) + + # Get recovery points + recovery_points = client.list(vault_name, resource_group_name, fabric_name, container_uri, item_uri, filter_string) + paged_recovery_points = cust_help.get_list_from_paged_response(recovery_points) + + return paged_recovery_points + + +def enable_protection_for_azure_wl(cmd, client, resource_group_name, vault_name, policy_object, protectable_item): + # Get protectable item. + protectable_item_object = protectable_item + protectable_item_type = protectable_item_object.properties.protectable_item_type + if protectable_item_type.lower() not in ["sqldatabase", "sqlinstance", "saphanadatabase", "saphanasystem"]: + raise CLIError( + """ + Protectable Item must be either of type SQLDataBase, HANADatabase, HANAInstance or SQLInstance. + """) + + item_name = protectable_item_object.name + container_name = protectable_item_object.id.split('/')[12] + cust_help.validate_policy(policy_object) + policy_id = policy_object.id + + properties = _get_protected_item_instance(protectable_item_type) + properties.backup_management_type = 'AzureWorkload' + properties.policy_id = policy_id + properties.workload_type = protectable_item_type + param = ProtectionContainerResource(properties=properties) + + # Trigger enable protection and wait for completion + result = sdk_no_wait(True, client.create_or_update, + vault_name, resource_group_name, fabric_name, container_name, item_name, param) + return cust_help.track_backup_job(cmd.cli_ctx, result, vault_name, resource_group_name) + + +def backup_now(cmd, client, resource_group_name, vault_name, item, retain_until, backup_type, + enable_compression=False): + message = "For SAPHANA and SQL workload, retain-until parameter value will be overridden by the underlying policy" + if retain_until is not None: + logger.warning(message) + container_uri = cust_help.get_protection_container_uri_from_id(item.id) + item_uri = cust_help.get_protected_item_uri_from_id(item.id) + + backup_item_type = item_uri.split(';')[0] + if not cust_help.is_sql(backup_item_type) and enable_compression: + raise CLIError( + """ + Enable compression is not applicable for SAPHanaDatabase item type. + """) + + if cust_help.is_hana(backup_item_type) and backup_type in ['Log', 'CopyOnlyFull']: + raise CLIError( + """ + Backup type cannot be Log or CopyOnlyFull for SAPHanaDatabase item type. + """) + + properties = AzureWorkloadBackupRequest(backup_type=backup_type, enable_compression=enable_compression, + recovery_point_expiry_time_in_utc=retain_until) + param = BackupRequestResource(properties=properties) + + # Trigger backup and wait for completion + result = sdk_no_wait(True, client.trigger, + vault_name, resource_group_name, fabric_name, container_uri, item_uri, + param) + return cust_help.track_backup_job(cmd.cli_ctx, result, vault_name, resource_group_name) + + +def disable_protection(cmd, client, resource_group_name, vault_name, item, delete_backup_data): + + container_uri = cust_help.get_protection_container_uri_from_id(item.id) + item_uri = cust_help.get_protected_item_uri_from_id(item.id) + + backup_item_type = item_uri.split(';')[0] + if not cust_help.is_sql(backup_item_type) and not cust_help.is_hana(backup_item_type): + raise CLIError( + """ + Item must be either of type SQLDataBase or SAPHanaDatabase. + """) + + if delete_backup_data: + result = sdk_no_wait(True, client.delete, + vault_name, resource_group_name, fabric_name, container_uri, item_uri) + return cust_help.track_backup_job(cmd.cli_ctx, result, vault_name, resource_group_name) + + properties = _get_protected_item_instance(backup_item_type) + properties.protection_state = 'ProtectionStopped' + properties.policy_id = '' + param = ProtectedItemResource(properties=properties) + + # Trigger disable protection and wait for completion + result = sdk_no_wait(True, client.create_or_update, + vault_name, resource_group_name, fabric_name, container_uri, item_uri, param) + return cust_help.track_backup_job(cmd.cli_ctx, result, vault_name, resource_group_name) + + +def auto_enable_for_azure_wl(client, resource_group_name, vault_name, policy_object, protectable_item): + protectable_item_object = protectable_item + item_id = protectable_item_object.id + protectable_item_type = protectable_item_object.properties.protectable_item_type + if protectable_item_type.lower() != 'sqlinstance': + raise CLIError( + """ + Protectable Item can only be of type SQLInstance. + """) + + policy_id = policy_object.id + + properties = AzureRecoveryServiceVaultProtectionIntent(backup_management_type='AzureWorkload', + policy_id=policy_id, item_id=item_id) + param = ProtectionIntentResource(properties=properties) + + intent_object_name = str(uuid4()) + + try: + client.create_or_update(vault_name, resource_group_name, fabric_name, intent_object_name, param) + return {'status': True} + except Exception: + return {'status': False} + + +def disable_auto_for_azure_wl(client, resource_group_name, vault_name, item_name): + if not cust_help.is_native_name(item_name): + raise CLIError( + """ + Protectable Item name must be native. + """) + + protectable_item_type = item_name.split(';')[0] + if protectable_item_type.lower() != 'sqlinstance': + raise CLIError( + """ + Protectable Item can only be of type SQLInstance. + """) + + intent_object_name = str(uuid4()) + + try: + client.delete(vault_name, resource_group_name, fabric_name, intent_object_name) + return {'status': True} + except Exception: + return {'status': False} + + +def list_workload_items(cmd, vault_name, resource_group_name, container_name, + container_type="AzureWorkload", workload_type="SQLInstance"): + filter_string = cust_help.get_filter_string({ + 'backupManagementType': container_type, + 'workloadItemType': workload_type}) + + items = backup_workload_items_cf(cmd.cli_ctx).list(vault_name, resource_group_name, + fabric_name, container_name, filter_string) + return cust_help.get_list_from_paged_response(items) + + +def restore_azure_wl(cmd, client, resource_group_name, vault_name, recovery_config): + recovery_config_object = cust_help.get_or_read_json(recovery_config) + restore_mode = recovery_config_object['restore_mode'] + container_uri = recovery_config_object['container_uri'] + item_uri = recovery_config_object['item_uri'] + recovery_point_id = recovery_config_object['recovery_point_id'] + log_point_in_time = recovery_config_object['log_point_in_time'] + item_type = recovery_config_object['item_type'] + source_resource_id = recovery_config_object['source_resource_id'] + database_name = recovery_config_object['database_name'] + container_id = recovery_config_object['container_id'] + alternate_directory_paths = recovery_config_object['alternate_directory_paths'] + + # Construct trigger restore request object + trigger_restore_properties = _get_restore_request_instance(item_type, log_point_in_time) + trigger_restore_properties.recovery_type = restore_mode + + if restore_mode == 'AlternateLocation': + setattr(trigger_restore_properties, 'source_resource_id', source_resource_id) + setattr(trigger_restore_properties, 'target_info', TargetRestoreInfo(overwrite_option='Overwrite', + database_name=database_name, + container_id=container_id)) + if 'sql' in item_type.lower(): + directory_map = [] + for i in alternate_directory_paths: + directory_map.append(SQLDataDirectoryMapping(mapping_type=i[0], source_path=i[1], + source_logical_name=i[2], target_path=i[3])) + setattr(trigger_restore_properties, 'alternate_directory_paths', directory_map) + + if log_point_in_time is not None: + setattr(trigger_restore_properties, 'point_in_time', datetime_type(log_point_in_time)) + + if 'sql' in item_type.lower(): + setattr(trigger_restore_properties, 'should_use_alternate_target_location', True) + setattr(trigger_restore_properties, 'is_non_recoverable', False) + trigger_restore_request = RestoreRequestResource(properties=trigger_restore_properties) + # Trigger restore and wait for completion + result = sdk_no_wait(True, client.trigger, + vault_name, resource_group_name, fabric_name, container_uri, item_uri, recovery_point_id, + trigger_restore_request) + return cust_help.track_backup_job(cmd.cli_ctx, result, vault_name, resource_group_name) + + +def show_recovery_config(cmd, client, resource_group_name, vault_name, restore_mode, container_name, item_name, + rp_name, target_item, target_item_name, log_point_in_time): + if log_point_in_time is not None: + datetime_type(log_point_in_time) + + if restore_mode == 'AlternateWorkloadRestore': + if target_item is None: + raise CLIError( + """ + Target Item must be provided. + """) + + protectable_item_type = target_item.properties.protectable_item_type + if protectable_item_type.lower() not in ["sqlinstance", "saphanasystem"]: + raise CLIError( + """ + Target Item must be either of type HANAInstance or SQLInstance. + """) + + if rp_name is None and log_point_in_time is None: + raise CLIError( + """ + Log point in time or recovery point name must be provided. + """) + + item = common.show_item(cmd, backup_protected_items_cf(cmd.cli_ctx), resource_group_name, vault_name, + container_name, item_name, "AzureWorkload") + cust_help.validate_item(item) + item_type = item.properties.workload_type + item_name = item.name + + if not cust_help.is_sql(item_type) and not cust_help.is_hana(item_type): + raise CLIError( + """ + Item must be either of type SQLDataBase or SAPHanaDatabase. + """) + + # Mapping of restore mode + restore_mode_map = {'OriginalWorkloadRestore': 'OriginalLocation', + 'AlternateWorkloadRestore': 'AlternateLocation'} + rp_name = rp_name if rp_name is not None else 'DefaultRangeRecoveryPoint' + + if rp_name == 'DefaultRangeRecoveryPoint': + recovery_points = list_wl_recovery_points(cmd, client, resource_group_name, vault_name, item, + None, None, True) + recovery_points = [rp for rp in recovery_points if rp.name == rp_name] + + if recovery_points == []: + raise CLIError( + """ + Invalid input. + """) + + recovery_point = recovery_points[0] + else: + recovery_point = common.show_recovery_point(cmd, client, resource_group_name, vault_name, container_name, + item_name, rp_name, item_type, + backup_management_type="AzureWorkload") + + alternate_directory_paths = [] + if 'sql' in item_type.lower() and restore_mode == 'AlternateWorkloadRestore': + items = list_workload_items(cmd, vault_name, resource_group_name, container_name) + for titem in items: + if titem.properties.friendly_name == target_item.properties.friendly_name: + if titem.properties.server_name == target_item.properties.server_name: + for path in recovery_point.properties.extended_info.data_directory_paths: + target_path = cust_help.get_target_path(path.type, path.path, path.logical_name, + titem.properties.data_directory_paths) + alternate_directory_paths.append((path.type, path.path, path.logical_name, target_path)) + db_name = None + if restore_mode == 'AlternateWorkloadRestore': + friendly_name = target_item.properties.friendly_name + db_name = friendly_name + '/' + target_item_name + + container_id = None + if restore_mode == 'AlternateWorkloadRestore': + container_id = '/'.join(target_item.id.split('/')[:-2]) + + if not ('sql' in item_type.lower() and restore_mode == 'AlternateWorkloadRestore'): + alternate_directory_paths = None + + return { + 'restore_mode': restore_mode_map[restore_mode], + 'container_uri': item.properties.container_name, + 'item_uri': item_name, + 'recovery_point_id': recovery_point.name, + 'log_point_in_time': log_point_in_time, + 'item_type': 'SQL' if 'sql' in item_type.lower() else 'SAPHana', + 'source_resource_id': item.properties.source_resource_id, + 'database_name': db_name, + 'container_id': container_id, + 'alternate_directory_paths': alternate_directory_paths} + + +def _get_restore_request_instance(item_type, log_point_in_time): + if item_type.lower() == "saphana": + if log_point_in_time is not None: + return AzureWorkloadSAPHanaPointInTimeRestoreRequest() + return AzureWorkloadSAPHanaRestoreRequest() + if item_type.lower() == "sql": + if log_point_in_time is not None: + return AzureWorkloadSQLPointInTimeRestoreRequest() + return AzureWorkloadSQLRestoreRequest() + return None + + +def _get_protected_item_instance(item_type): + if item_type.lower() == "saphanadatabase": + return AzureVmWorkloadSAPHanaDatabaseProtectedItem() + return AzureVmWorkloadSQLDatabaseProtectedItem() diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/preparers.py b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/preparers.py index aa0992344a8..7416eb9a036 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/preparers.py +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/preparers.py @@ -323,8 +323,8 @@ def create_resource(self, name, **kwargs): policy_json['properties']['backupManagementType'] = "AzureStorage" policy_json = json.dumps(policy_json) - command_string = 'az backup policy create -g {} -v {} --policy \'{}\' -n {}' - command_string = command_string.format(self.resource_group, self.vault, policy_json, name) + command_string = 'az backup policy create -g {} -v {} --policy \'{}\' -n {} --backup-management-type {}' + command_string = command_string.format(self.resource_group, self.vault, policy_json, name, "AzureStorage") execute(self.cli_ctx, command_string) return {self.parameter_name: name} return {self.parameter_name: os.environ.get('AZURE_CLI_TEST_DEV_BACKUP_POLICY_NAME', None)} diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_container.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_container.yaml new file mode 100644 index 00000000000..15c3639fcf4 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_container.yaml @@ -0,0 +1,7970 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;IDCDemo;hanajb","name":"VMAppContainer;Compute;IDCDemo;hanajb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"hanajb","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/hanajb"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;nopCommerceRG;nopCommerceWeb","name":"VMAppContainer;Compute;nopCommerceRG;nopCommerceWeb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nopCommerceWeb","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nopCommerceRG/providers/Microsoft.Compute/virtualMachines/nopCommerceWeb"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;ReadyDemoGroups;hanajb","name":"VMAppContainer;Compute;ReadyDemoGroups;hanajb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"hanajb","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ReadyDemoGroups/providers/Microsoft.Compute/virtualMachines/hanajb"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;SAPHANABugBash;hanajb","name":"VMAppContainer;Compute;SAPHANABugBash;hanajb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"hanajb","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SAPHANABugBash/providers/Microsoft.Compute/virtualMachines/hanajb"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;trinadhkpolicytest;trinadhARMpoltest","name":"VMAppContainer;Compute;trinadhkpolicytest;trinadhARMpoltest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"trinadhARMpoltest","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trinadhkpolicytest/providers/Microsoft.Compute/virtualMachines/trinadhARMpoltest"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsDmz1;UtsDmzVm1","name":"VMAppContainer;Compute;UtsDmz1;UtsDmzVm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsDmzVm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsDmz1/providers/Microsoft.Compute/virtualMachines/UtsDmzVm1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsDmz1;UtsNsgSqlVm1","name":"VMAppContainer;Compute;UtsDmz1;UtsNsgSqlVm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsNsgSqlVm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsDmz1/providers/Microsoft.Compute/virtualMachines/UtsNsgSqlVm1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsDmz1;UtsNsgVm1","name":"VMAppContainer;Compute;UtsDmz1;UtsNsgVm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsNsgVm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsDmz1/providers/Microsoft.Compute/virtualMachines/UtsNsgVm1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsRGnet1;UtsNoFw1","name":"VMAppContainer;Compute;UtsRGnet1;UtsNoFw1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsNoFw1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsRGnet1/providers/Microsoft.Compute/virtualMachines/UtsNoFw1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsRGnet1;UtsNsgTestVm1","name":"VMAppContainer;Compute;UtsRGnet1;UtsNsgTestVm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsNsgTestVm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsRGnet1/providers/Microsoft.Compute/virtualMachines/UtsNsgTestVm1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsRGnet1;UtsNsgVm3","name":"VMAppContainer;Compute;UtsRGnet1;UtsNsgVm3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsNsgVm3","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsRGnet1/providers/Microsoft.Compute/virtualMachines/UtsNsgVm3"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsRGnet1;UtsVmManaged2","name":"VMAppContainer;Compute;UtsRGnet1;UtsVmManaged2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsVmManaged2","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsRGnet1/providers/Microsoft.Compute/virtualMachines/UtsVmManaged2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsRGnet1;UtsVmUnm1","name":"VMAppContainer;Compute;UtsRGnet1;UtsVmUnm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsVmUnm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsRGnet1/providers/Microsoft.Compute/virtualMachines/UtsVmUnm1"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '9277' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 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 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"backupManagementType": "AzureWorkload", "containerType": + "VMAppContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3", + "workloadType": "SAPHanaDatabase"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + Content-Length: + - '282' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:27 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:31 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:34:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:15 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/95f569f4-72ca-44dc-9d20-dcca954a21c0?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-08T05:34:07.5699138Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1112' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container list + Connection: + - keep-alive + ParameterSetName: + - -v -g -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC1","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC1","lastUpdatedTime":"2019-06-12T11:02:44.8070016Z","extendedInfo":{"hostServerName":"HANADemoIDC1","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-08T05:34:07.5699138Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC4","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC4","lastUpdatedTime":"2019-06-13T10:05:16.5548561Z","extendedInfo":{"hostServerName":"HANADemoIDC4","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC4","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3350' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container show + Connection: + - keep-alive + ParameterSetName: + - -n -v -g -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-08T05:34:07.5699138Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1112' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container show + Connection: + - keep-alive + ParameterSetName: + - -n -v -g -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-08T05:34:07.5699138Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1112' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container list + Connection: + - keep-alive + ParameterSetName: + - -v -g -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC1","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC1","lastUpdatedTime":"2019-06-12T11:02:44.8070016Z","extendedInfo":{"hostServerName":"HANADemoIDC1","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-08T05:34:07.5699138Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC4","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC4","lastUpdatedTime":"2019-06-13T10:05:16.5548561Z","extendedInfo":{"hostServerName":"HANADemoIDC4","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC4","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3350' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC1","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC1","lastUpdatedTime":"2019-06-12T11:02:44.8070016Z","extendedInfo":{"hostServerName":"HANADemoIDC1","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-08T05:34:07.5699138Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC4","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC4","lastUpdatedTime":"2019-06-13T10:05:16.5548561Z","extendedInfo":{"hostServerName":"HANADemoIDC4","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC4","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3350' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"backupManagementType": "AzureWorkload", "containerType": + "VMAppContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3", + "workloadType": "SAPHanaDatabase", "operationType": "Reregister"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + Content-Length: + - '313' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:31 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:35:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/63f60ff1-97df-4b72-be0d-a84bb29a7cf2?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-08T05:34:07.5699138Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1112' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container list + Connection: + - keep-alive + ParameterSetName: + - -v -g -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC1","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC1","lastUpdatedTime":"2019-06-12T11:02:44.8070016Z","extendedInfo":{"hostServerName":"HANADemoIDC1","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-08T05:34:07.5699138Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC4","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC4","lastUpdatedTime":"2019-06-13T10:05:16.5548561Z","extendedInfo":{"hostServerName":"HANADemoIDC4","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC4","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3350' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3?api-version=2016-12-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 08 Jul 2019 05:36:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14997' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:36:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:37:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:37:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:37:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:37:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:37:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:37:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:37:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:37:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:37:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:37:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:37:15 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:37:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:37:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:37:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:37:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:37:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:37:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:37:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:37:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:37:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:37:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:37:31 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:37:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/af29524f-f05c-47f2-aa9a-4751a4cfd9ea?api-version=2016-12-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jul 2019 05:37:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container list + Connection: + - keep-alive + ParameterSetName: + - -v -g -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC1","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC1","lastUpdatedTime":"2019-06-12T11:02:44.8070016Z","extendedInfo":{"hostServerName":"HANADemoIDC1","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC4","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC4","lastUpdatedTime":"2019-06-13T10:05:16.5548561Z","extendedInfo":{"hostServerName":"HANADemoIDC4","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC4","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2237' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:37:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_item.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_item.yaml new file mode 100644 index 00000000000..670e1687129 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_item.yaml @@ -0,0 +1,7678 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container list + Connection: + - keep-alive + ParameterSetName: + - -v -g --backup-management-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC1","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC1","lastUpdatedTime":"2019-09-12T09:05:17.9002084Z","extendedInfo":{"hostServerName":"HANADemoIDC1","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-17T04:00:20.5908677Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":6,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}},{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC4","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC4","lastUpdatedTime":"2019-06-13T10:05:16.5548561Z","extendedInfo":{"hostServerName":"HANADemoIDC4","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC4","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3511' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:41:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protectable-item show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --protectable-item-type --server-name --name --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SAPHanaDatabase%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanasystem;h20","name":"saphanasystem;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":5,"subprotectableitemcount":5,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H20","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h20new","name":"saphanadatabase;h20;h20new","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H20NEW","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h22_restoremadhu","name":"saphanadatabase;h20;h22_restoremadhu","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22_RESTOREMADHU","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h22abc","name":"saphanadatabase;h20;h22abc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22ABC","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;systemdb","name":"saphanadatabase;h20;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanasystem;h22","name":"saphanasystem;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":6,"subprotectableitemcount":6,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H22","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanadatabase;h22;h22_restored_sarath","name":"saphanadatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22_RESTORED_SARATH","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanasystem;h21","name":"saphanasystem;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":2,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H21","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanadatabase;h21;systemdb","name":"saphanadatabase;h21;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6877' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:41:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/HourlyLogBackup?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-07-04T01:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '1718' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:41:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"backupManagementType": "AzureWorkload", "workloadType": + "SAPHanaDatabase", "policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup", + "protectedItemType": "AzureVmWorkloadSAPHanaDatabase"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + Content-Length: + - '325' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectedItems/saphanadatabase;h22;h22_restored_sarath/operationsStatus/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 09 Oct 2019 12:41:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectedItems/saphanadatabase;h22;h22_restored_sarath/operationResults/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:41:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:41:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:41:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:41:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:41:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:41:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:41:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:41:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:41:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:41:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:41:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:41:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:41:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:41:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:41:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:41:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:41:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:41:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:41:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:41:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12: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 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"InProgress","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/db304cfe-7888-4ac1-b904-c6a9cb43a126?api-version=2016-12-01 + response: + body: + string: '{"id":"db304cfe-7888-4ac1-b904-c6a9cb43a126","name":"db304cfe-7888-4ac1-b904-c6a9cb43a126","status":"Succeeded","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"2019-10-09T12:41:21.1975718Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"5021c861-203d-4eb3-8081-eb15cd141103"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/5021c861-203d-4eb3-8081-eb15cd141103?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/5021c861-203d-4eb3-8081-eb15cd141103","name":"5021c861-203d-4eb3-8081-eb15cd141103","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M13.6999108S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"HourlyLogBackup"}},"entityFriendlyName":"h22_restored_sarath","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2019-10-09T12:41:21.1975718Z","endTime":"2019-10-09T12:42:34.8974826Z","activityId":"180fd540-ea92-11e9-a8e6-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '743' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container show + Connection: + - keep-alive + ParameterSetName: + - -n -v -g --backup-management-type --query + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-17T04:00:20.5908677Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":6,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}},{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1273' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"726866731","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup"}}' + headers: + cache-control: + - no-cache + content-length: + - '1374' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container show + Connection: + - keep-alive + ParameterSetName: + - -n -v -g --backup-management-type --query + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-17T04:00:20.5908677Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":6,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}},{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1273' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"726866731","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup"}}' + headers: + cache-control: + - no-cache + content-length: + - '1374' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"726866731","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup"}}' + headers: + cache-control: + - no-cache + content-length: + - '1374' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item list + Connection: + - keep-alive + ParameterSetName: + - -g -v -c --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectedItems?api-version=2017-07-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SAPHanaDatabase%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc1/protectedItems/SAPHanaDatabase;h20;h20","name":"SAPHanaDatabase;h20;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h20","serverName":"HANADemoIDC1","parentName":"H20","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T12:20:46.2835895Z","protectedItemDataSourceId":"794225287","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/logbackup2hrs"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;systemdb","name":"SAPHanaDatabase;h22;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"systemdb","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T11:17:47.9242473Z","protectedItemDataSourceId":"13832204","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/DemoBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22","name":"SAPHanaDatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T05:09:54.8744032Z","protectedItemDataSourceId":"1490506909","protectedItemHealthStatus":"NotReachable","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_820","name":"SAPHanaDatabase;h22;h22_restored_820","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_820","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T12:25:17.8643389Z","protectedItemDataSourceId":"1521025620","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/log15min"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_07_09_2019_1430","name":"SAPHanaDatabase;h22;h22_restored_07_09_2019_1430","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_07_09_2019_1430","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T11:10:00.5412798Z","protectedItemDataSourceId":"1581031465","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/DemoBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_07_09_2019_1404","name":"SAPHanaDatabase;h22;h22_restored_07_09_2019_1404","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_07_09_2019_1404","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T11:10:36.9456142Z","protectedItemDataSourceId":"609218030","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/DemoBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"726866731","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc4/protectedItems/SAPHanaDatabase;h21;h21","name":"SAPHanaDatabase;h21;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h21","serverName":"HANADemoIDC4","parentName":"H21","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Unhealthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T11:02:46.6378974Z","protectedItemDataSourceId":"563669421","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc4","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc4","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/DemoBackup"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '10071' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item list + Connection: + - keep-alive + ParameterSetName: + - -g -v -c --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectedItems?api-version=2017-07-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SAPHanaDatabase%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc1/protectedItems/SAPHanaDatabase;h20;h20","name":"SAPHanaDatabase;h20;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h20","serverName":"HANADemoIDC1","parentName":"H20","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T12:20:46.2835895Z","protectedItemDataSourceId":"794225287","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/logbackup2hrs"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;systemdb","name":"SAPHanaDatabase;h22;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"systemdb","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T11:17:47.9242473Z","protectedItemDataSourceId":"13832204","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/DemoBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22","name":"SAPHanaDatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T05:09:54.8744032Z","protectedItemDataSourceId":"1490506909","protectedItemHealthStatus":"NotReachable","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_820","name":"SAPHanaDatabase;h22;h22_restored_820","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_820","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T12:25:17.8643389Z","protectedItemDataSourceId":"1521025620","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/log15min"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_07_09_2019_1430","name":"SAPHanaDatabase;h22;h22_restored_07_09_2019_1430","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_07_09_2019_1430","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T11:10:00.5412798Z","protectedItemDataSourceId":"1581031465","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/DemoBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_07_09_2019_1404","name":"SAPHanaDatabase;h22;h22_restored_07_09_2019_1404","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_07_09_2019_1404","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T11:10:36.9456142Z","protectedItemDataSourceId":"609218030","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/DemoBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"726866731","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc4/protectedItems/SAPHanaDatabase;h21;h21","name":"SAPHanaDatabase;h21;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h21","serverName":"HANADemoIDC4","parentName":"H21","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Unhealthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T11:02:46.6378974Z","protectedItemDataSourceId":"563669421","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc4","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc4","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/DemoBackup"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '10071' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item list + Connection: + - keep-alive + ParameterSetName: + - -g -v --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectedItems?api-version=2017-07-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SAPHanaDatabase%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc1/protectedItems/SAPHanaDatabase;h20;h20","name":"SAPHanaDatabase;h20;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h20","serverName":"HANADemoIDC1","parentName":"H20","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T12:20:46.2835895Z","protectedItemDataSourceId":"794225287","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc1","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc1","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/logbackup2hrs"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;systemdb","name":"SAPHanaDatabase;h22;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"systemdb","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T11:17:47.9242473Z","protectedItemDataSourceId":"13832204","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/DemoBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22","name":"SAPHanaDatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T05:09:54.8744032Z","protectedItemDataSourceId":"1490506909","protectedItemHealthStatus":"NotReachable","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_820","name":"SAPHanaDatabase;h22;h22_restored_820","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_820","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T12:25:17.8643389Z","protectedItemDataSourceId":"1521025620","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/log15min"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_07_09_2019_1430","name":"SAPHanaDatabase;h22;h22_restored_07_09_2019_1430","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_07_09_2019_1430","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T11:10:00.5412798Z","protectedItemDataSourceId":"1581031465","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/DemoBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_07_09_2019_1404","name":"SAPHanaDatabase;h22;h22_restored_07_09_2019_1404","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_07_09_2019_1404","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T11:10:36.9456142Z","protectedItemDataSourceId":"609218030","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/DemoBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"726866731","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc4/protectedItems/SAPHanaDatabase;h21;h21","name":"SAPHanaDatabase;h21;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h21","serverName":"HANADemoIDC4","parentName":"H21","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Unhealthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T11:02:46.6378974Z","protectedItemDataSourceId":"563669421","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc4","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc4","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/DemoBackup"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '10071' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"726866731","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup"}}' + headers: + cache-control: + - no-cache + content-length: + - '1374' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/HourlyLogBackup?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-07-04T01:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":1}}' + headers: + cache-control: + - no-cache + content-length: + - '1718' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"backupManagementType": "AzureWorkload", "workloadType": + "SAPHanaDatabase", "containerName": "VMAppContainer;compute;idcdemo;hanademoidc3", + "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3", + "policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup", + "protectedItemType": "AzureVmWorkloadSAPHanaDatabase", "friendlyName": "h22_restored_sarath", + "serverName": "HANADemoIDC3", "parentName": "H22", "parentType": "AzureVmWorkloadSAPHanaSystem", + "protectionStatus": "Healthy", "protectionState": "IRPending", "lastBackupStatus": + "IRPending", "lastBackupErrorDetail": {"code": "Success", "message": ""}, "protectedItemDataSourceId": + "726866731", "protectedItemHealthStatus": "IRPending", "extendedInfo": {"recoveryPointCount": + 0, "policyState": "Consistent"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + Content-Length: + - '993' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationsStatus/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 09 Oct 2019 12:42:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationResults/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:42:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"InProgress","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0043c810-830b-401e-900c-1b76ffad4fcc?api-version=2016-12-01 + response: + body: + string: '{"id":"0043c810-830b-401e-900c-1b76ffad4fcc","name":"0043c810-830b-401e-900c-1b76ffad4fcc","status":"Succeeded","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"2019-10-09T12:42:43.4888356Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"1730eceb-7e13-4152-944f-61d8aebb1def"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/1730eceb-7e13-4152-944f-61d8aebb1def?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/1730eceb-7e13-4152-944f-61d8aebb1def","name":"1730eceb-7e13-4152-944f-61d8aebb1def","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M14.595109S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"HourlyLogBackup"}},"entityFriendlyName":"h22_restored_sarath","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2019-10-09T12:42:43.4888356Z","endTime":"2019-10-09T12:43:58.0839446Z","activityId":"4871cb38-ea92-11e9-945e-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '742' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2019-10-09T12:39:53.4617442Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft + Azure Backup encountered an internal error.","recommendations":["Wait for + a few minutes and then try the operation again. If the issue persists, please + contact Microsoft support."]},"protectedItemDataSourceId":"726866731","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup"}}' + headers: + cache-control: + - no-cache + content-length: + - '1622' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:43:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2019-10-09T12:39:53.4617442Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft + Azure Backup encountered an internal error.","recommendations":["Wait for + a few minutes and then try the operation again. If the issue persists, please + contact Microsoft support."]},"protectedItemDataSourceId":"726866731","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup"}}' + headers: + cache-control: + - no-cache + content-length: + - '1622' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:44:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 09 Oct 2019 12:44:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupOperationResults/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + response: + body: + string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:44:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + response: + body: + string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:44:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + response: + body: + string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:44:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + response: + body: + string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:44:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + response: + body: + string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:44:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + response: + body: + string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:44:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + response: + body: + string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:44:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + response: + body: + string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:44:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + response: + body: + string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:44:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + response: + body: + string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:44:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + response: + body: + string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:44:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + response: + body: + string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:44:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + response: + body: + string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:44:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + response: + body: + string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:44:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + response: + body: + string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:44:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + response: + body: + string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:44:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + response: + body: + string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:44:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + response: + body: + string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:44:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + response: + body: + string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:44:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + response: + body: + string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:44:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + response: + body: + string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:44:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + response: + body: + string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"InProgress","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:44:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/9ad507ca-61f4-484b-9f2f-7d259a3d644f?api-version=2016-12-01 + response: + body: + string: '{"id":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","name":"9ad507ca-61f4-484b-9f2f-7d259a3d644f","status":"Succeeded","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"2019-10-09T12:44:02.0548118Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"83d936e4-91b1-4f2d-bd4c-c97eae39767d"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:44:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/83d936e4-91b1-4f2d-bd4c-c97eae39767d?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/83d936e4-91b1-4f2d-bd4c-c97eae39767d","name":"83d936e4-91b1-4f2d-bd4c-c97eae39767d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT32.2027474S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"h22_restored_sarath","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2019-10-09T12:44:02.0548118Z","endTime":"2019-10-09T12:44:34.2575592Z","activityId":"778a5d98-ea92-11e9-bbf7-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '711' + content-type: + - application/json + date: + - Wed, 09 Oct 2019 12:44: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_policy.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_policy.yaml new file mode 100644 index 00000000000..0c75054642e --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_policy.yaml @@ -0,0 +1,328 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup policy show + Connection: + - keep-alive + ParameterSetName: + - -g -v -n -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/DemoBackup?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/DemoBackup","name":"DemoBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-05-13T22:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '1712' + content-type: + - application/json + date: + - Fri, 05 Jul 2019 11:35:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureWorkload", + "workLoadType": "SAPHanaDatabase", "settings": {"timeZone": "UTC", "issqlcompression": + false, "isCompression": false}, "subProtectionPolicy": [{"policyType": "Full", + "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", "scheduleRunFrequency": + "Daily", "scheduleRunTimes": ["2019-05-13T22:30:00.000Z"], "scheduleWeeklyFrequency": + 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", "dailySchedule": + {"retentionTimes": ["2019-05-13T22:30:00.000Z"], "retentionDuration": {"count": + 180, "durationType": "Days"}}, "weeklySchedule": {"daysOfTheWeek": ["Sunday"], + "retentionTimes": ["2019-05-13T22:30:00.000Z"], "retentionDuration": {"count": + 104, "durationType": "Weeks"}}, "monthlySchedule": {"retentionScheduleFormatType": + "Weekly", "retentionScheduleWeekly": {"daysOfTheWeek": ["Sunday"], "weeksOfTheMonth": + ["First"]}, "retentionTimes": ["2019-05-13T22:30:00.000Z"], "retentionDuration": + {"count": 60, "durationType": "Months"}}, "yearlySchedule": {"retentionScheduleFormatType": + "Weekly", "monthsOfYear": ["January"], "retentionScheduleWeekly": {"daysOfTheWeek": + ["Sunday"], "weeksOfTheMonth": ["First"]}, "retentionTimes": ["2019-05-13T22:30:00.000Z"], + "retentionDuration": {"count": 10, "durationType": "Years"}}}}, {"policyType": + "Log", "schedulePolicy": {"schedulePolicyType": "LogSchedulePolicy", "scheduleFrequencyInMins": + 120}, "retentionPolicy": {"retentionPolicyType": "SimpleRetentionPolicy", "retentionDuration": + {"count": 15, "durationType": "Days"}}}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup policy new + Connection: + - keep-alive + Content-Length: + - '1582' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v --policy -b -w -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/clitest-policy000001?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-05-13T22:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '1740' + content-type: + - application/json + date: + - Fri, 05 Jul 2019 11:36: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: + - '1197' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup policy list + Connection: + - keep-alive + ParameterSetName: + - -g -v + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies?api-version=2017-07-01 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/HourlyLogBackp","name":"HourlyLogBackp","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-05-13T21:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-05-13T21:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-05-13T22:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-05-13T21:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-05-13T21:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-07-04T01:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/log15min","name":"log15min","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-06-14T01:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-06-14T01:00:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-06-14T01:00:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-06-14T01:00:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-06-14T01:00:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":15},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/DemoBackup","name":"DemoBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-05-13T22:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}]}' + headers: + cache-control: + - no-cache + content-length: + - '8682' + content-type: + - application/json + date: + - Fri, 05 Jul 2019 11:36:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup policy show + Connection: + - keep-alive + ParameterSetName: + - -g -v -n -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/clitest-policy000001?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-05-13T22:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '1740' + content-type: + - application/json + date: + - Fri, 05 Jul 2019 11:36:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup policy delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/clitest-policy000001?api-version=2016-12-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 05 Jul 2019 11:36:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup policy list + Connection: + - keep-alive + ParameterSetName: + - -g -v + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies?api-version=2017-07-01 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/HourlyLogBackp","name":"HourlyLogBackp","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-05-13T21:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-05-13T21:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-05-13T21:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-05-13T21:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-07-04T01:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/log15min","name":"log15min","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-06-14T01:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-06-14T01:00:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-06-14T01:00:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-06-14T01:00:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-06-14T01:00:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":15},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/DemoBackup","name":"DemoBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SAPHanaDatabase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-05-13T22:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-05-13T22:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6941' + content-type: + - application/json + date: + - Fri, 05 Jul 2019 11: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 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_protectable_item.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_protectable_item.yaml new file mode 100644 index 00000000000..cf65d33a955 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_protectable_item.yaml @@ -0,0 +1,4528 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;IDCDemo;hanajb","name":"VMAppContainer;Compute;IDCDemo;hanajb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"hanajb","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/hanajb"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;nopCommerceRG;nopCommerceWeb","name":"VMAppContainer;Compute;nopCommerceRG;nopCommerceWeb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nopCommerceWeb","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nopCommerceRG/providers/Microsoft.Compute/virtualMachines/nopCommerceWeb"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;ReadyDemoGroups;hanajb","name":"VMAppContainer;Compute;ReadyDemoGroups;hanajb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"hanajb","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ReadyDemoGroups/providers/Microsoft.Compute/virtualMachines/hanajb"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;SAPHANABugBash;hanajb","name":"VMAppContainer;Compute;SAPHANABugBash;hanajb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"hanajb","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SAPHANABugBash/providers/Microsoft.Compute/virtualMachines/hanajb"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;trinadhkpolicytest;trinadhARMpoltest","name":"VMAppContainer;Compute;trinadhkpolicytest;trinadhARMpoltest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"trinadhARMpoltest","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/trinadhkpolicytest/providers/Microsoft.Compute/virtualMachines/trinadhARMpoltest"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsDmz1;UtsDmzVm1","name":"VMAppContainer;Compute;UtsDmz1;UtsDmzVm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsDmzVm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsDmz1/providers/Microsoft.Compute/virtualMachines/UtsDmzVm1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsDmz1;UtsNsgSqlVm1","name":"VMAppContainer;Compute;UtsDmz1;UtsNsgSqlVm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsNsgSqlVm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsDmz1/providers/Microsoft.Compute/virtualMachines/UtsNsgSqlVm1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsDmz1;UtsNsgVm1","name":"VMAppContainer;Compute;UtsDmz1;UtsNsgVm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsNsgVm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsDmz1/providers/Microsoft.Compute/virtualMachines/UtsNsgVm1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsRGnet1;UtsNoFw1","name":"VMAppContainer;Compute;UtsRGnet1;UtsNoFw1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsNoFw1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsRGnet1/providers/Microsoft.Compute/virtualMachines/UtsNoFw1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsRGnet1;UtsNsgTestVm1","name":"VMAppContainer;Compute;UtsRGnet1;UtsNsgTestVm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsNsgTestVm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsRGnet1/providers/Microsoft.Compute/virtualMachines/UtsNsgTestVm1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsRGnet1;UtsNsgVm3","name":"VMAppContainer;Compute;UtsRGnet1;UtsNsgVm3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsNsgVm3","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsRGnet1/providers/Microsoft.Compute/virtualMachines/UtsNsgVm3"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsRGnet1;UtsVmManaged2","name":"VMAppContainer;Compute;UtsRGnet1;UtsVmManaged2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsVmManaged2","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsRGnet1/providers/Microsoft.Compute/virtualMachines/UtsVmManaged2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;UtsRGnet1;UtsVmUnm1","name":"VMAppContainer;Compute;UtsRGnet1;UtsVmUnm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"UtsVmUnm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/UtsRGnet1/providers/Microsoft.Compute/virtualMachines/UtsVmUnm1"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '9277' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10: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 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"backupManagementType": "AzureWorkload", "containerType": + "VMAppContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3", + "workloadType": "SAPHanaDatabase"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + Content-Length: + - '282' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:31 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:38:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:31 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/d44c5d49-f4e2-4151-9cac-a33f1e7a0632?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-08T10:38:24.4380268Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1112' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container list + Connection: + - keep-alive + ParameterSetName: + - -v -g -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC1","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC1","lastUpdatedTime":"2019-06-12T11:02:44.8070016Z","extendedInfo":{"hostServerName":"HANADemoIDC1","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-08T10:38:24.4380268Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC4","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC4","lastUpdatedTime":"2019-06-13T10:05:16.5548561Z","extendedInfo":{"hostServerName":"HANADemoIDC4","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC4","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3350' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container show + Connection: + - keep-alive + ParameterSetName: + - -n -v -g --query -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-08T10:38:24.4380268Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1112' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protectable-item list + Connection: + - keep-alive + ParameterSetName: + - -g -v -w + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SAPHanaDatabase%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanasystem;h20","name":"saphanasystem;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":2,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H20","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h20","name":"saphanadatabase;h20;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H20","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;systemdb","name":"saphanadatabase;h20;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanasystem;h22","name":"saphanasystem;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H22","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanadatabase;h22;h22","name":"saphanadatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanadatabase;h22;systemdb","name":"saphanadatabase;h22;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanasystem;h21","name":"saphanasystem;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H21","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanadatabase;h21;h21","name":"saphanadatabase;h21;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H21","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanadatabase;h21;systemdb","name":"saphanadatabase;h21;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6665' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:39:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protectable-item initialize + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -v -w -c + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/inquire?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SAPHanaDatabase%27 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 08 Jul 2019 10:42:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/8ee0bd5a-ec46-4fbc-a151-323f58ce4e03?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protectable-item list + Connection: + - keep-alive + ParameterSetName: + - -g -v -w + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SAPHanaDatabase%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanasystem;h20","name":"saphanasystem;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":2,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H20","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h20","name":"saphanadatabase;h20;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H20","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;systemdb","name":"saphanadatabase;h20;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanasystem;h22","name":"saphanasystem;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":3,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H22","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanadatabase;h22;h22","name":"saphanadatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanadatabase;h22;newdb","name":"saphanadatabase;h22;newdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"NEWDB","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanadatabase;h22;systemdb","name":"saphanadatabase;h22;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanasystem;h21","name":"saphanasystem;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H21","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanadatabase;h21;h21","name":"saphanadatabase;h21;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H21","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanadatabase;h21;systemdb","name":"saphanadatabase;h21;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '7410' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:42:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protectable-item show + Connection: + - keep-alive + ParameterSetName: + - -g -v -n -w -p -s + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SAPHanaDatabase%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanasystem;h20","name":"saphanasystem;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":2,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H20","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h20","name":"saphanadatabase;h20;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H20","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;systemdb","name":"saphanadatabase;h20;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanasystem;h22","name":"saphanasystem;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":3,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H22","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanadatabase;h22;h22","name":"saphanadatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanadatabase;h22;newdb","name":"saphanadatabase;h22;newdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"NEWDB","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanadatabase;h22;systemdb","name":"saphanadatabase;h22;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanasystem;h21","name":"saphanasystem;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H21","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanadatabase;h21;h21","name":"saphanadatabase;h21;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H21","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanadatabase;h21;systemdb","name":"saphanadatabase;h21;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '7410' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3?api-version=2016-12-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 08 Jul 2019 10:43:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:15 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:27 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:43:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/operationResults/fcb37a71-3660-442e-baca-6d888963253d?api-version=2016-12-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jul 2019 10:43:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container list + Connection: + - keep-alive + ParameterSetName: + - -v -g -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC1","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC1","lastUpdatedTime":"2019-06-12T11:02:44.8070016Z","extendedInfo":{"hostServerName":"HANADemoIDC1","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC4","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC4","lastUpdatedTime":"2019-06-13T10:05:16.5548561Z","extendedInfo":{"hostServerName":"HANADemoIDC4","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC4","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '2237' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 10:44:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_protection.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_protection.yaml new file mode 100644 index 00000000000..f561f2e4d5c --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_protection.yaml @@ -0,0 +1,5200 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container list + Connection: + - keep-alive + ParameterSetName: + - -v -g --backup-management-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC1","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC1","lastUpdatedTime":"2019-09-12T09:05:17.9002084Z","extendedInfo":{"hostServerName":"HANADemoIDC1","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-17T04:00:20.5908677Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":6,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}},{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC4","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC4","lastUpdatedTime":"2019-06-13T10:05:16.5548561Z","extendedInfo":{"hostServerName":"HANADemoIDC4","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC4","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3511' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:53:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protectable-item show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --protectable-item-type --server-name --name --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SAPHanaDatabase%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanasystem;h20","name":"saphanasystem;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":5,"subprotectableitemcount":5,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H20","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h20new","name":"saphanadatabase;h20;h20new","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H20NEW","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h22_restoremadhu","name":"saphanadatabase;h20;h22_restoremadhu","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22_RESTOREMADHU","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h22abc","name":"saphanadatabase;h20;h22abc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22ABC","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;systemdb","name":"saphanadatabase;h20;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanasystem;h22","name":"saphanasystem;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":6,"subprotectableitemcount":6,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H22","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanadatabase;h22;h22_restored_sarath","name":"saphanadatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22_RESTORED_SARATH","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanasystem;h21","name":"saphanasystem;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":2,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H21","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanadatabase;h21;systemdb","name":"saphanadatabase;h21;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6877' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:53:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/HourlyLogBackup?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-07-04T01:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '1718' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:53:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"backupManagementType": "AzureWorkload", "workloadType": + "SAPHanaDatabase", "policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup", + "protectedItemType": "AzureVmWorkloadSAPHanaDatabase"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + Content-Length: + - '325' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectedItems/saphanadatabase;h22;h22_restored_sarath/operationsStatus/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 10 Oct 2019 07:53:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectedItems/saphanadatabase;h22;h22_restored_sarath/operationResults/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:53:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:53:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:53:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:53:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:53:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:53:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:53:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:53:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:53:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:53:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:53:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:53:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:53:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:53:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"InProgress","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0565108-4f2b-4022-9766-917e158b9e0e?api-version=2016-12-01 + response: + body: + string: '{"id":"b0565108-4f2b-4022-9766-917e158b9e0e","name":"b0565108-4f2b-4022-9766-917e158b9e0e","status":"Succeeded","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"2019-10-10T07:53:41.9880264Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c6a4a061-ac45-4ef9-a9bc-4ebffc8eef98"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/c6a4a061-ac45-4ef9-a9bc-4ebffc8eef98?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/c6a4a061-ac45-4ef9-a9bc-4ebffc8eef98","name":"c6a4a061-ac45-4ef9-a9bc-4ebffc8eef98","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M13.8150893S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"HourlyLogBackup"}},"entityFriendlyName":"h22_restored_sarath","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2019-10-10T07:53:41.9880264Z","endTime":"2019-10-10T07:54:55.8031157Z","activityId":"12d97bd2-eb33-11e9-9124-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '743' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container show + Connection: + - keep-alive + ParameterSetName: + - -n -v -g --backup-management-type --query + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-17T04:00:20.5908677Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":6,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}},{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1273' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-type --retain-until --enable-compression + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"129717662","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup"}}' + headers: + cache-control: + - no-cache + content-length: + - '1374' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:54:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"objectType": "AzureWorkloadBackupRequest", "backupType": + "Full", "enableCompression": false, "recoveryPointExpiryTimeInUTC": "2020-07-01T00:00:00.000Z"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + Content-Length: + - '170' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -v -g -i -c --backup-type --retain-until --enable-compression + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath/backup?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationsStatus/2d7db092-258c-4444-ab2b-7754aa07aac5?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 10 Oct 2019 07:54:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationResults/2d7db092-258c-4444-ab2b-7754aa07aac5?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-type --retain-until --enable-compression + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2d7db092-258c-4444-ab2b-7754aa07aac5?api-version=2016-12-01 + response: + body: + string: '{"id":"2d7db092-258c-4444-ab2b-7754aa07aac5","name":"2d7db092-258c-4444-ab2b-7754aa07aac5","status":"Succeeded","startTime":"2019-10-10T07:54:59.0255936Z","endTime":"2019-10-10T07:54:59.0255936Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"ae79f41a-c315-4823-b0f0-da7612aa18b8"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:55:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-type --retain-until --enable-compression + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8","name":"ae79f41a-c315-4823-b0f0-da7612aa18b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1.3304061S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:54:59.0255936Z","activityId":"40e36ca2-eb33-11e9-aac6-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '754' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:55:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8","name":"ae79f41a-c315-4823-b0f0-da7612aa18b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1.7800556S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:54:59.0255936Z","activityId":"40e36ca2-eb33-11e9-aac6-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '754' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:55:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8","name":"ae79f41a-c315-4823-b0f0-da7612aa18b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2.0961931S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:54:59.0255936Z","activityId":"40e36ca2-eb33-11e9-aac6-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '754' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:55:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8","name":"ae79f41a-c315-4823-b0f0-da7612aa18b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT38.5657182S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:54:59.0255936Z","activityId":"40e36ca2-eb33-11e9-aac6-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '755' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:55:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8","name":"ae79f41a-c315-4823-b0f0-da7612aa18b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M13.9590388S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:54:59.0255936Z","activityId":"40e36ca2-eb33-11e9-aac6-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '757' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:56: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8","name":"ae79f41a-c315-4823-b0f0-da7612aa18b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M50.3099218S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:54:59.0255936Z","activityId":"40e36ca2-eb33-11e9-aac6-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '757' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:56:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8","name":"ae79f41a-c315-4823-b0f0-da7612aa18b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M20.7046883S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:54:59.0255936Z","activityId":"40e36ca2-eb33-11e9-aac6-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '757' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:57:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8","name":"ae79f41a-c315-4823-b0f0-da7612aa18b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M51.041103S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:54:59.0255936Z","activityId":"40e36ca2-eb33-11e9-aac6-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '756' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:57: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8","name":"ae79f41a-c315-4823-b0f0-da7612aa18b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M21.8015269S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:54:59.0255936Z","activityId":"40e36ca2-eb33-11e9-aac6-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '757' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:58:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8","name":"ae79f41a-c315-4823-b0f0-da7612aa18b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M52.1072682S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:54:59.0255936Z","activityId":"40e36ca2-eb33-11e9-aac6-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '757' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:58: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/ae79f41a-c315-4823-b0f0-da7612aa18b8","name":"ae79f41a-c315-4823-b0f0-da7612aa18b8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4M4.4553664S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"Completed"}],"propertyBag":{"Data Transferred (in + MB)":"1952.3164"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup + (Full)","status":"Completed","startTime":"2019-10-10T07:54:59.0255936Z","endTime":"2019-10-10T07:59:03.48096Z","activityId":"40e36ca2-eb33-11e9-aac6-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '838' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:59:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n --backup-management-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T07:55:42.5865085Z","protectedItemDataSourceId":"129717662","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:53:39.362Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T07:56:41.111Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1458' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T07:55:42.5865085Z","protectedItemDataSourceId":"129717662","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:53:39.362Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T07:56:41.111Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1458' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"policyId": "", "protectedItemType": "AzureVmWorkloadSAPHanaDatabase", + "protectionState": "ProtectionStopped"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + Content-Length: + - '127' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationsStatus/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 10 Oct 2019 07:59:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationResults/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + response: + body: + string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:59:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + response: + body: + string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:59:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + response: + body: + string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:59:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + response: + body: + string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + response: + body: + string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + response: + body: + string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 08: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + response: + body: + string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 08:00:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + response: + body: + string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 08: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + response: + body: + string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 08: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + response: + body: + string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 08: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + response: + body: + string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 08:00:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + response: + body: + string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 08: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + response: + body: + string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 08:00:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + response: + body: + string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 08: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + response: + body: + string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 08: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + response: + body: + string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 08:00:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + response: + body: + string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 08: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + response: + body: + string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 08: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + response: + body: + string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 08: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + response: + body: + string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 08:00:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + response: + body: + string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 08: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + response: + body: + string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"InProgress","startTime":"2019-10-10T07:59:53.983253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 08: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/ce0f8d62-f492-4705-8ada-8c03d078a138?api-version=2016-12-01 + response: + body: + string: '{"id":"ce0f8d62-f492-4705-8ada-8c03d078a138","name":"ce0f8d62-f492-4705-8ada-8c03d078a138","status":"Succeeded","startTime":"2019-10-10T07:59:53.983253Z","endTime":"2019-10-10T07:59:53.983253Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"4d600872-8d07-4952-858e-bfd24c148a02"}}' + headers: + cache-control: + - no-cache + content-length: + - '302' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 08: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/4d600872-8d07-4952-858e-bfd24c148a02?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/4d600872-8d07-4952-858e-bfd24c148a02","name":"4d600872-8d07-4952-858e-bfd24c148a02","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT32.4401167S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"h22_restored_sarath","backupManagementType":"AzureWorkload","operation":"DisableBackup","status":"Completed","startTime":"2019-10-10T07:59:53.983253Z","endTime":"2019-10-10T08:00:26.4233697Z","activityId":"f0dfc470-eb33-11e9-929f-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '707' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 08:00: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n --backup-management-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T07:55:42.5865085Z","protectedItemDataSourceId":"129717662","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:53:39.362Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","lastRecoveryPoint":"2019-10-10T07:56:41.111Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1290' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_restore.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_restore.yaml new file mode 100644 index 00000000000..2228f5ff356 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_restore.yaml @@ -0,0 +1,8018 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container list + Connection: + - keep-alive + ParameterSetName: + - -v -g --backup-management-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC1","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC1","lastUpdatedTime":"2019-09-12T09:05:17.9002084Z","extendedInfo":{"hostServerName":"HANADemoIDC1","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-17T04:00:20.5908677Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":6,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}},{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC4","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC4","lastUpdatedTime":"2019-06-13T10:05:16.5548561Z","extendedInfo":{"hostServerName":"HANADemoIDC4","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC4","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3511' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protectable-item show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --protectable-item-type --server-name --name --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SAPHanaDatabase%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanasystem;h20","name":"saphanasystem;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":5,"subprotectableitemcount":5,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H20","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h20new","name":"saphanadatabase;h20;h20new","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H20NEW","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h22_restoremadhu","name":"saphanadatabase;h20;h22_restoremadhu","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22_RESTOREMADHU","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h22abc","name":"saphanadatabase;h20;h22abc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22ABC","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;systemdb","name":"saphanadatabase;h20;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanasystem;h22","name":"saphanasystem;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":6,"subprotectableitemcount":6,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H22","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanadatabase;h22;h22_restored_sarath","name":"saphanadatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22_RESTORED_SARATH","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanasystem;h21","name":"saphanasystem;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":2,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H21","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanadatabase;h21;systemdb","name":"saphanadatabase;h21;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6877' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupPolicies/HourlyLogBackup?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-07-04T01:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-07-04T01:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '1718' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07: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 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"backupManagementType": "AzureWorkload", "workloadType": + "SAPHanaDatabase", "policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup", + "protectedItemType": "AzureVmWorkloadSAPHanaDatabase"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + Content-Length: + - '325' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectedItems/saphanadatabase;h22;h22_restored_sarath/operationsStatus/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 10 Oct 2019 07:23:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectedItems/saphanadatabase;h22;h22_restored_sarath/operationResults/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:23:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:24:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:24:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:24:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:24:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:24:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:24:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:24:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:24:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:24:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:24:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:24:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:24:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:24:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"InProgress","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:24:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/b0aecc38-baaf-4f30-bd63-f4f10c6da6a7?api-version=2016-12-01 + response: + body: + string: '{"id":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","name":"b0aecc38-baaf-4f30-bd63-f4f10c6da6a7","status":"Succeeded","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"2019-10-10T07:23:13.5743278Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a05d49fe-8d38-4812-b8ec-a1487eaadf90"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:24:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/a05d49fe-8d38-4812-b8ec-a1487eaadf90?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/a05d49fe-8d38-4812-b8ec-a1487eaadf90","name":"a05d49fe-8d38-4812-b8ec-a1487eaadf90","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M5.4472263S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"HourlyLogBackup"}},"entityFriendlyName":"h22_restored_sarath","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2019-10-10T07:23:13.5743278Z","endTime":"2019-10-10T07:24:19.0215541Z","activityId":"d0cafeda-eb2e-11e9-b657-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '742' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:24:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container show + Connection: + - keep-alive + ParameterSetName: + - -n -v -g --backup-management-type --query + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-17T04:00:20.5908677Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":6,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}},{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1273' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:24:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + ParameterSetName: + - -v -g -c -i --backup-type --retain-until --enable-compression + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"1759690829","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup"}}' + headers: + cache-control: + - no-cache + content-length: + - '1375' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:24:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"objectType": "AzureWorkloadBackupRequest", "backupType": + "Full", "enableCompression": false, "recoveryPointExpiryTimeInUTC": "2020-07-01T00:00:00.000Z"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + Content-Length: + - '170' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -v -g -c -i --backup-type --retain-until --enable-compression + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath/backup?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationsStatus/fa9e0021-826a-44d1-8549-e1e255c663c9?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 10 Oct 2019 07:24:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationResults/fa9e0021-826a-44d1-8549-e1e255c663c9?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + ParameterSetName: + - -v -g -c -i --backup-type --retain-until --enable-compression + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/fa9e0021-826a-44d1-8549-e1e255c663c9?api-version=2016-12-01 + response: + body: + string: '{"id":"fa9e0021-826a-44d1-8549-e1e255c663c9","name":"fa9e0021-826a-44d1-8549-e1e255c663c9","status":"InProgress","startTime":"2019-10-10T07:24:22.4934488Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:24:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + ParameterSetName: + - -v -g -c -i --backup-type --retain-until --enable-compression + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/fa9e0021-826a-44d1-8549-e1e255c663c9?api-version=2016-12-01 + response: + body: + string: '{"id":"fa9e0021-826a-44d1-8549-e1e255c663c9","name":"fa9e0021-826a-44d1-8549-e1e255c663c9","status":"Succeeded","startTime":"2019-10-10T07:24:22.4934488Z","endTime":"2019-10-10T07:24:22.4934488Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"b95d3181-1470-4aed-afa6-678c26e1ce15"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:24:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + ParameterSetName: + - -v -g -c -i --backup-type --retain-until --enable-compression + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15","name":"b95d3181-1470-4aed-afa6-678c26e1ce15","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2.3918946S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:24:22.4934488Z","activityId":"fa367ec6-eb2e-11e9-9add-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '754' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:24: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15","name":"b95d3181-1470-4aed-afa6-678c26e1ce15","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3.2217718S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:24:22.4934488Z","activityId":"fa367ec6-eb2e-11e9-9add-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '754' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:24:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15","name":"b95d3181-1470-4aed-afa6-678c26e1ce15","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3.6202992S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:24:22.4934488Z","activityId":"fa367ec6-eb2e-11e9-9add-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '754' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:24:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15","name":"b95d3181-1470-4aed-afa6-678c26e1ce15","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT34.0626352S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:24:22.4934488Z","activityId":"fa367ec6-eb2e-11e9-9add-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '755' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:24:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15","name":"b95d3181-1470-4aed-afa6-678c26e1ce15","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M4.6332149S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:24:22.4934488Z","activityId":"fa367ec6-eb2e-11e9-9add-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '756' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:25:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15","name":"b95d3181-1470-4aed-afa6-678c26e1ce15","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M34.8996573S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:24:22.4934488Z","activityId":"fa367ec6-eb2e-11e9-9add-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '757' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:25:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15","name":"b95d3181-1470-4aed-afa6-678c26e1ce15","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M5.2463345S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:24:22.4934488Z","activityId":"fa367ec6-eb2e-11e9-9add-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '756' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:26:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15","name":"b95d3181-1470-4aed-afa6-678c26e1ce15","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M35.5919117S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:24:22.4934488Z","activityId":"fa367ec6-eb2e-11e9-9add-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '757' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:26:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15","name":"b95d3181-1470-4aed-afa6-678c26e1ce15","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M5.9373692S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:24:22.4934488Z","activityId":"fa367ec6-eb2e-11e9-9add-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '756' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:27: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15","name":"b95d3181-1470-4aed-afa6-678c26e1ce15","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M36.8391347S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T07:24:22.4934488Z","activityId":"fa367ec6-eb2e-11e9-9add-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '757' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:27:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/b95d3181-1470-4aed-afa6-678c26e1ce15","name":"b95d3181-1470-4aed-afa6-678c26e1ce15","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4M3.912071S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"Completed"}],"propertyBag":{"Data Transferred (in + MB)":"1952.3086"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup + (Full)","status":"Completed","startTime":"2019-10-10T07:24:22.4934488Z","endTime":"2019-10-10T07:28:26.4055198Z","activityId":"fa367ec6-eb2e-11e9-9add-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '839' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:28:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n --backup-management-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T07:25:07.7769483Z","protectedItemDataSourceId":"1759690829","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:23:04.522Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T07:25:46.676Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1459' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:29:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint list + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --workload-type --query + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T07:25:07.7769483Z","protectedItemDataSourceId":"1759690829","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:23:04.522Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T07:25:46.676Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1459' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint list + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --workload-type --query + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath/recoveryPoints?api-version=2016-12-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/recoveryPoints/80152240784172","name":"80152240784172","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2019-10-10T07:23:04.522Z","type":"Full"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '584' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:29:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protectable-item show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --protectable-item-type --server-name --name --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SAPHanaDatabase%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanasystem;h20","name":"saphanasystem;h20","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":5,"subprotectableitemcount":5,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H20","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h20new","name":"saphanadatabase;h20;h20new","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H20NEW","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h22_restoremadhu","name":"saphanadatabase;h20;h22_restoremadhu","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22_RESTOREMADHU","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;h22abc","name":"saphanadatabase;h20;h22abc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"H22ABC","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc1/protectableItems/saphanadatabase;h20;systemdb","name":"saphanadatabase;h20;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H20","serverName":"HANADemoIDC1","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectableItems/saphanasystem;h22","name":"saphanasystem;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H22","serverName":"HANADemoIDC3","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":6,"subprotectableitemcount":6,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H22","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanasystem;h21","name":"saphanasystem;h21","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":2,"subprotectableitemcount":2,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaSystem","friendlyName":"H21","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc4/protectableItems/saphanadatabase;h21;systemdb","name":"saphanadatabase;h21;systemdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"H21","serverName":"HANADemoIDC4","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SAPHana","protectableItemType":"SAPHanaDatabase","friendlyName":"SYSTEMDB","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '6090' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:29:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T07:25:07.7769483Z","protectedItemDataSourceId":"1759690829","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:23:04.522Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T07:25:46.676Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1459' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:29:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T07:25:07.7769483Z","protectedItemDataSourceId":"1759690829","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:23:04.522Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T07:25:46.676Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1459' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:29:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath/recoveryPoints/80152240784172?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/recoveryPoints/80152240784172","name":"80152240784172","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2019-10-10T07:23:04.522Z","type":"Full"}}' + headers: + cache-control: + - no-cache + content-length: + - '572' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:29:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"objectType": "AzureWorkloadSAPHanaRestoreRequest", "recoveryType": + "AlternateLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3", + "targetInfo": {"overwriteOption": "Overwrite", "containerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3", + "databaseName": "H22/h22_restored_sarath_restored_10_10_2019_1259"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + Content-Length: + - '611' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --vault-name -g --recovery-config + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath/recoveryPoints/80152240784172/restore?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationsStatus/618c444d-765d-4237-8d0b-b38c2392c14e?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 10 Oct 2019 07:29:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationResults/618c444d-765d-4237-8d0b-b38c2392c14e?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --recovery-config + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/618c444d-765d-4237-8d0b-b38c2392c14e?api-version=2016-12-01 + response: + body: + string: '{"id":"618c444d-765d-4237-8d0b-b38c2392c14e","name":"618c444d-765d-4237-8d0b-b38c2392c14e","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:29:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --recovery-config + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/618c444d-765d-4237-8d0b-b38c2392c14e?api-version=2016-12-01 + response: + body: + string: '{"id":"618c444d-765d-4237-8d0b-b38c2392c14e","name":"618c444d-765d-4237-8d0b-b38c2392c14e","status":"Succeeded","startTime":"2019-10-10T07:29:07.2524932Z","endTime":"2019-10-10T07:29:07.2524932Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"681778b0-bf01-4c0a-b4b0-66747ffcce6e"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:29:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --recovery-config + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2.9777472S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '803' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:29:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3.4260286S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '803' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:29:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4.1224526S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '803' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:29: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT34.4790663S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '804' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:29: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M4.7787583S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '805' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:30: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M35.1438154S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '806' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:30:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M5.4499988S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '805' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:31: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M36.0777126S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '806' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:31: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M6.7294026S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '805' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:32:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M37.0646711S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '806' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:32:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4M7.5249427S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '805' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:33: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4M37.8708401S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '806' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:33:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT5M8.2528873S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '805' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:34: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT5M38.5433677S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '806' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:34: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT6M8.8651272S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '805' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:35: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT6M39.8135658S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '806' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:35: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT7M10.1871967S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '806' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:36: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT7M41.1739565S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '806' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:36:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT8M11.5227656S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '806' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:37: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT8M42.2797811S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:29:07.2524932Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '806' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:37: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/681778b0-bf01-4c0a-b4b0-66747ffcce6e","name":"681778b0-bf01-4c0a-b4b0-66747ffcce6e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT9M6.3114496S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"Completed"}],"propertyBag":{"Data Transferred (in + MB)":"1952.3086","Job Type":"Recovery to an alternate database","RestoreDestination":"HANADemoIDC3/H22/h22_restored_sarath_restored_10_10_2019_1259"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore + (Full)","status":"Completed","startTime":"2019-10-10T07:29:07.2524932Z","endTime":"2019-10-10T07:38:13.5639428Z","activityId":"a439e634-eb2f-11e9-8f16-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '975' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:38:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --restore-mode --item-name --container-name --rp-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T07:25:07.7769483Z","protectedItemDataSourceId":"1759690829","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:23:04.522Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T07:25:46.676Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1459' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:38:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --restore-mode --item-name --container-name --rp-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T07:25:07.7769483Z","protectedItemDataSourceId":"1759690829","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:23:04.522Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T07:25:46.676Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1459' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:38:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --restore-mode --item-name --container-name --rp-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath/recoveryPoints/80152240784172?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/recoveryPoints/80152240784172","name":"80152240784172","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2019-10-10T07:23:04.522Z","type":"Full"}}' + headers: + cache-control: + - no-cache + content-length: + - '572' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:38:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"objectType": "AzureWorkloadSAPHanaRestoreRequest", "recoveryType": + "OriginalLocation"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + Content-Length: + - '104' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --vault-name -g --recovery-config + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath/recoveryPoints/80152240784172/restore?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationsStatus/894bd5ae-e8cb-40a1-a7b6-c4746d05158f?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 10 Oct 2019 07:38:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationResults/894bd5ae-e8cb-40a1-a7b6-c4746d05158f?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --recovery-config + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/894bd5ae-e8cb-40a1-a7b6-c4746d05158f?api-version=2016-12-01 + response: + body: + string: '{"id":"894bd5ae-e8cb-40a1-a7b6-c4746d05158f","name":"894bd5ae-e8cb-40a1-a7b6-c4746d05158f","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:38:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --recovery-config + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/894bd5ae-e8cb-40a1-a7b6-c4746d05158f?api-version=2016-12-01 + response: + body: + string: '{"id":"894bd5ae-e8cb-40a1-a7b6-c4746d05158f","name":"894bd5ae-e8cb-40a1-a7b6-c4746d05158f","status":"Succeeded","startTime":"2019-10-10T07:38:53.0890879Z","endTime":"2019-10-10T07:38:53.0890879Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f57854d7-d806-4681-b152-6fc868af0d2d"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:38:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --recovery-config + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2.4954582S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '803' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:38:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2.964732S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '802' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:38:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3.2755715S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '803' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:38:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT33.8937331S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '804' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:39:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M4.6527324S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '805' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:39:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M35.0084557S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '806' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:40: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M5.7539506S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '805' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:40:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M36.1409455S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '806' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:41:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M6.6425512S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '805' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:41:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M37.5756771S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '806' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:42:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4M8.5448568S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '805' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:43: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4M38.8941653S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '806' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:43:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT5M9.2731661S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '805' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:44:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT5M40.3354964S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '806' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:44: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT6M10.6430893S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '806' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:45:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT6M41.5268424S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '806' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:45: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT7M11.8465922S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T07:38:53.0890879Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '806' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:46: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/f57854d7-d806-4681-b152-6fc868af0d2d","name":"f57854d7-d806-4681-b152-6fc868af0d2d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT7M35.0756175S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"Completed"}],"propertyBag":{"Data Transferred (in + MB)":"1952.3086","Job Type":"Recovery to the original database","RestoreDestination":"HANADemoIDC3/H22/H22_RESTORED_SARATH"}},"entityFriendlyName":"H22/H22_RESTORED_SARATH + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore + (Full)","status":"Completed","startTime":"2019-10-10T07:38:53.0890879Z","endTime":"2019-10-10T07:46:28.1647054Z","activityId":"01937968-eb31-11e9-9b9d-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '951' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:46:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T07:25:07.7769483Z","protectedItemDataSourceId":"1759690829","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:23:04.522Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T07:25:46.676Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1459' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"policyId": "", "protectedItemType": "AzureVmWorkloadSAPHanaDatabase", + "protectionState": "ProtectionStopped"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + Content-Length: + - '127' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationsStatus/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 10 Oct 2019 07:47:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/operationResults/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + response: + body: + string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + response: + body: + string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + response: + body: + string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + response: + body: + string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + response: + body: + string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + response: + body: + string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + response: + body: + string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + response: + body: + string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + response: + body: + string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + response: + body: + string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + response: + body: + string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + response: + body: + string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + response: + body: + string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + response: + body: + string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + response: + body: + string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + response: + body: + string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + response: + body: + string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + response: + body: + string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + response: + body: + string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + response: + body: + string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + response: + body: + string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + response: + body: + string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + response: + body: + string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + response: + body: + string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"InProgress","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/d7c64fc9-2121-4907-899c-9a5d7d5493f0?api-version=2016-12-01 + response: + body: + string: '{"id":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","name":"d7c64fc9-2121-4907-899c-9a5d7d5493f0","status":"Succeeded","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"2019-10-10T07:47:07.6039312Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"603f211f-5a3e-440f-9bbf-6a4a3e818dd8"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/603f211f-5a3e-440f-9bbf-6a4a3e818dd8?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/603f211f-5a3e-440f-9bbf-6a4a3e818dd8","name":"603f211f-5a3e-440f-9bbf-6a4a3e818dd8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT33.1398345S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"h22_restored_sarath","backupManagementType":"AzureWorkload","operation":"DisableBackup","status":"Completed","startTime":"2019-10-10T07:47:07.6039312Z","endTime":"2019-10-10T07:47:40.7437657Z","activityId":"27bf8f8a-eb32-11e9-af98-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '708' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n --backup-management-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T07:25:07.7769483Z","protectedItemDataSourceId":"1759690829","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:23:04.522Z","recoveryPointCount":2,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","lastRecoveryPoint":"2019-10-10T07:25:46.676Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1291' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 07:47:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_rp.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_rp.yaml new file mode 100644 index 00000000000..96b28fe8c95 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_rp.yaml @@ -0,0 +1,1749 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container list + Connection: + - keep-alive + ParameterSetName: + - -v -g --backup-management-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC1","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC1","lastUpdatedTime":"2019-09-12T09:05:17.9002084Z","extendedInfo":{"hostServerName":"HANADemoIDC1","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3","lastUpdatedTime":"2019-07-17T04:00:20.5908677Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":6,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}},{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC3","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC4","name":"VMAppContainer;Compute;IDCDemo;HANADemoIDC4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC4","lastUpdatedTime":"2019-06-13T10:05:16.5548561Z","extendedInfo":{"hostServerName":"HANADemoIDC4","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":2,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"HANADemoIDC4","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3511' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint list + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --workload-type --query + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2019-10-10T09:06:08.1891359Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft + Azure Backup encountered an internal error.","recommendations":["Wait for + a few minutes and then try the operation again. If the issue persists, please + contact Microsoft support."]},"protectedItemDataSourceId":"129717662","protectedItemHealthStatus":"IRPending","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:53:39.362Z","recoveryPointCount":3,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/logbackup2hrs","lastRecoveryPoint":"2019-10-10T09:08:06.366Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1716' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint list + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --workload-type --query + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath/recoveryPoints?api-version=2016-12-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/recoveryPoints/76072765135896","name":"76072765135896","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2019-10-10T07:53:39.362Z","type":"Full"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '584' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint logchain show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2019-10-10T09:06:08.1891359Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft + Azure Backup encountered an internal error.","recommendations":["Wait for + a few minutes and then try the operation again. If the issue persists, please + contact Microsoft support."]},"protectedItemDataSourceId":"129717662","protectedItemHealthStatus":"IRPending","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:53:39.362Z","recoveryPointCount":3,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/logbackup2hrs","lastRecoveryPoint":"2019-10-10T09:08:06.366Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1716' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint logchain show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath/recoveryPoints?api-version=2016-12-01&$filter=restorePointQueryType%20eq%20%27Log%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaPointInTimeRecoveryPoint","timeRanges":[{"startTime":"2019-10-10T07:53:39.362Z","endTime":"2019-10-10T09:08:06.366Z"}],"type":"Log"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '657' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint logchain show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2019-10-10T09:06:08.1891359Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft + Azure Backup encountered an internal error.","recommendations":["Wait for + a few minutes and then try the operation again. If the issue persists, please + contact Microsoft support."]},"protectedItemDataSourceId":"129717662","protectedItemHealthStatus":"IRPending","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:53:39.362Z","recoveryPointCount":3,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/logbackup2hrs","lastRecoveryPoint":"2019-10-10T09:08:06.366Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1716' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint logchain show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath/recoveryPoints?api-version=2016-12-01&$filter=restorePointQueryType%20eq%20%27Log%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaPointInTimeRecoveryPoint","timeRanges":[{"startTime":"2019-10-10T07:53:39.362Z","endTime":"2019-10-10T09:08:06.366Z"}],"type":"Log"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '657' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/saphanadatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;idcdemo;hanademoidc3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath","name":"SAPHanaDatabase;h22;h22_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22_restored_sarath","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2019-10-10T09:06:08.1891359Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft + Azure Backup encountered an internal error.","recommendations":["Wait for + a few minutes and then try the operation again. If the issue persists, please + contact Microsoft support."]},"protectedItemDataSourceId":"129717662","protectedItemHealthStatus":"IRPending","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T07:53:39.362Z","recoveryPointCount":3,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSAPHanaDatabase","backupManagementType":"AzureWorkload","workloadType":"SAPHanaDatabase","containerName":"VMAppContainer;compute;idcdemo;hanademoidc3","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.Compute/virtualMachines/hanademoidc3","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupPolicies/logbackup2hrs","lastRecoveryPoint":"2019-10-10T09:08:06.366Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1716' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22_restored_sarath?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 10 Oct 2019 09:11:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupOperationResults/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + response: + body: + string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + response: + body: + string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + response: + body: + string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + response: + body: + string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + response: + body: + string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + response: + body: + string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + response: + body: + string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + response: + body: + string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + response: + body: + string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + response: + body: + string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + response: + body: + string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + response: + body: + string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + response: + body: + string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + response: + body: + string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + response: + body: + string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + response: + body: + string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + response: + body: + string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + response: + body: + string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + response: + body: + string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + response: + body: + string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + response: + body: + string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:11:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + response: + body: + string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:12:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + response: + body: + string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"InProgress","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:12:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2537bb63-7416-4534-8091-5f641be4ed07?api-version=2016-12-01 + response: + body: + string: '{"id":"2537bb63-7416-4534-8091-5f641be4ed07","name":"2537bb63-7416-4534-8091-5f641be4ed07","status":"Succeeded","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"2019-10-10T09:11:30.2907058Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"8a8afce6-be09-4a9c-beb5-b0d712139f30"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:12:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/idcdemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/8a8afce6-be09-4a9c-beb5-b0d712139f30?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/idcdemo/providers/microsoft.recoveryservices/vaults/idcdemovault/backupJobs/8a8afce6-be09-4a9c-beb5-b0d712139f30","name":"8a8afce6-be09-4a9c-beb5-b0d712139f30","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT32.2667557S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"h22_restored_sarath","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2019-10-10T09:11:30.2907058Z","endTime":"2019-10-10T09:12:02.5574615Z","activityId":"f1c8d540-eb3d-11e9-9dbc-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '711' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 09:12:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_auto_protection.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_auto_protection.yaml new file mode 100644 index 00000000000..9280e7b3c54 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_auto_protection.yaml @@ -0,0 +1,19132 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;00prjai32tb;mkheraniTest1","name":"VMAppContainer;Compute;00prjai32tb;mkheraniTest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheraniTest1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.Compute/virtualMachines/mkheraniTest1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;ASEBVTRG;asebvtseavm1","name":"VMAppContainer;Compute;ASEBVTRG;asebvtseavm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asebvtseavm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtseavm1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;chandrikarg;testVMRetention2","name":"VMAppContainer;Compute;chandrikarg;testVMRetention2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"testVMRetention2","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testVMRetention2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;chandrikarg;testvmsql","name":"VMAppContainer;Compute;chandrikarg;testvmsql","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"testvmsql","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testvmsql"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;Nilay-RG;nilay-test","name":"VMAppContainer;Compute;Nilay-RG;nilay-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilay-test","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilay-test"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;Nilay-RG;nilsha-bvt-vm","name":"VMAppContainer;Compute;Nilay-RG;nilsha-bvt-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilsha-bvt-vm","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-bvt-vm"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;Nilay-RG;nilsha-test","name":"VMAppContainer;Compute;Nilay-RG;nilsha-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilsha-test","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-test"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;PortalTestAutomation;RestoreTestcwiq","name":"VMAppContainer;Compute;PortalTestAutomation;RestoreTestcwiq","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RestoreTestcwiq","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PortalTestAutomation/providers/Microsoft.Compute/virtualMachines/RestoreTestcwiq"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;PortalTestAutomation;RestoreTestmayr","name":"VMAppContainer;Compute;PortalTestAutomation;RestoreTestmayr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RestoreTestmayr","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PortalTestAutomation/providers/Microsoft.Compute/virtualMachines/RestoreTestmayr"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;PortalTestAutomation;RestoreTestphxd","name":"VMAppContainer;Compute;PortalTestAutomation;RestoreTestphxd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RestoreTestphxd","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PortalTestAutomation/providers/Microsoft.Compute/virtualMachines/RestoreTestphxd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;pstestVMRG1bca8f8e;pstestVM1bca8f8e","name":"VMAppContainer;Compute;pstestVMRG1bca8f8e;pstestVM1bca8f8e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestVM1bca8f8e","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestVMRG1bca8f8e/providers/Microsoft.Compute/virtualMachines/pstestVM1bca8f8e"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;riteshcRG;RestoreVM2","name":"VMAppContainer;Compute;riteshcRG;RestoreVM2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RestoreVM2","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/riteshcRG/providers/Microsoft.Compute/virtualMachines/RestoreVM2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;riteshcRG;RiteshRestore1","name":"VMAppContainer;Compute;riteshcRG;RiteshRestore1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RiteshRestore1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/riteshcRG/providers/Microsoft.Compute/virtualMachines/RiteshRestore1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg;deletethis43234","name":"VMAppContainer;Compute;shswain-rg;deletethis43234","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"deletethis43234","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg/providers/Microsoft.Compute/virtualMachines/deletethis43234"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg;dsadsa","name":"VMAppContainer;Compute;shswain-rg;dsadsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"dsadsa","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg/providers/Microsoft.Compute/virtualMachines/dsadsa"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg;dsfsdfd","name":"VMAppContainer;Compute;shswain-rg;dsfsdfd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"dsfsdfd","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg/providers/Microsoft.Compute/virtualMachines/dsfsdfd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg;shswain-sles-1","name":"VMAppContainer;Compute;shswain-rg;shswain-sles-1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswain-sles-1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg/providers/Microsoft.Compute/virtualMachines/shswain-sles-1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;sisi-RSV;sisi-mercury","name":"VMAppContainer;Compute;sisi-RSV;sisi-mercury","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sisi-mercury","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '13092' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:48:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"backupManagementType": "AzureWorkload", "containerType": + "VMAppContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8", + "workloadType": "SQLDataBase"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + Content-Length: + - '289' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:48:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:48:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:27 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:31 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:49:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:15 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:31 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:31 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:50:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:15 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0597c98f-a04a-4761-9843-ad6d36e7fb7d?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-09T03:49:06.3241909Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container list + Connection: + - keep-alive + ParameterSetName: + - -v -g -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-09T03:49:06.3241909Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1171' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protectable-item show + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -s -n -w + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":4,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;testdb1","name":"sqldatabase;mssqlserver;testdb1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"testdb1","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3966' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection auto-enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-01-08T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-01-08T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '1076' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"backupManagementType": "AzureWorkload", "itemId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqlinstance;mssqlserver", + "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup", + "protectionIntentItemType": "RecoveryServiceVaultItem"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection auto-enable-for-azurewl + Connection: + - keep-alive + Content-Length: + - '597' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/backupProtectionIntent/d5ad5d50-2adc-4c0d-899f-fdb123d607e0?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/backupProtectionIntent/d5ad5d50-2adc-4c0d-899f-fdb123d607e0","name":"d5ad5d50-2adc-4c0d-899f-fdb123d607e0","type":"Microsoft.RecoveryServices/vaults/backupProtectionIntent","properties":{"protectionIntentItemType":"RecoveryServiceVaultItem","backupManagementType":"AzureWorkload","sourceResourceId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/Compute;pstestwlRG1bca8;pstestwlvm1bca8","itemId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/Compute;pstestwlRG1bca8;pstestwlvm1bca8/protectableItems/MSSQLSERVER","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup","protectionState":"NotProtected"}}' + headers: + cache-control: + - no-cache + content-length: + - '1184' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable auto-for-azurewl + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -v -g -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/backupProtectionIntent/8a3fa939-2c2b-429a-8582-5d751aee2348?api-version=2017-07-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Tue, 09 Jul 2019 03:51:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-powered-by: + - ASP.NET + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2016-12-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 09 Jul 2019 03:51:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:51:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:15 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:31 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:52:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:31 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:53:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:15 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:27 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:31 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:54:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:55:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:15 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:27 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:27 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:56:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:15 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:27 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03:57:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/3e83eea6-6517-4fa2-b94d-759e289ac854?api-version=2016-12-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-type: + - application/json; charset=utf-8 + date: + - Tue, 09 Jul 2019 03:58:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container list + Connection: + - keep-alive + ParameterSetName: + - -v -g -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 03: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_container.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_container.yaml new file mode 100644 index 00000000000..85105d16507 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_container.yaml @@ -0,0 +1,16022 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;00prjai32tb;mkheraniTest1","name":"VMAppContainer;Compute;00prjai32tb;mkheraniTest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheraniTest1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.Compute/virtualMachines/mkheraniTest1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;ASEBVTRG;asebvtseavm1","name":"VMAppContainer;Compute;ASEBVTRG;asebvtseavm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asebvtseavm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtseavm1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;chandrikarg;testVMRetention2","name":"VMAppContainer;Compute;chandrikarg;testVMRetention2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"testVMRetention2","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testVMRetention2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;chandrikarg;testvmsql","name":"VMAppContainer;Compute;chandrikarg;testvmsql","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"testvmsql","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testvmsql"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;Nilay-RG;nilay-test","name":"VMAppContainer;Compute;Nilay-RG;nilay-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilay-test","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilay-test"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;Nilay-RG;nilsha-bvt-vm","name":"VMAppContainer;Compute;Nilay-RG;nilsha-bvt-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilsha-bvt-vm","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-bvt-vm"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;Nilay-RG;nilsha-test","name":"VMAppContainer;Compute;Nilay-RG;nilsha-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilsha-test","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-test"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;PortalTestAutomation;RestoreTestcwiq","name":"VMAppContainer;Compute;PortalTestAutomation;RestoreTestcwiq","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RestoreTestcwiq","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PortalTestAutomation/providers/Microsoft.Compute/virtualMachines/RestoreTestcwiq"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;PortalTestAutomation;RestoreTestmayr","name":"VMAppContainer;Compute;PortalTestAutomation;RestoreTestmayr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RestoreTestmayr","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PortalTestAutomation/providers/Microsoft.Compute/virtualMachines/RestoreTestmayr"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;PortalTestAutomation;RestoreTestphxd","name":"VMAppContainer;Compute;PortalTestAutomation;RestoreTestphxd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RestoreTestphxd","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PortalTestAutomation/providers/Microsoft.Compute/virtualMachines/RestoreTestphxd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;pstestVMRG1bca8f8e;pstestVM1bca8f8e","name":"VMAppContainer;Compute;pstestVMRG1bca8f8e;pstestVM1bca8f8e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestVM1bca8f8e","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestVMRG1bca8f8e/providers/Microsoft.Compute/virtualMachines/pstestVM1bca8f8e"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;riteshcRG;RestoreVM2","name":"VMAppContainer;Compute;riteshcRG;RestoreVM2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RestoreVM2","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/riteshcRG/providers/Microsoft.Compute/virtualMachines/RestoreVM2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;riteshcRG;RiteshRestore1","name":"VMAppContainer;Compute;riteshcRG;RiteshRestore1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RiteshRestore1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/riteshcRG/providers/Microsoft.Compute/virtualMachines/RiteshRestore1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;sisi-RSV;sisi-mercury","name":"VMAppContainer;Compute;sisi-RSV;sisi-mercury","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sisi-mercury","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '10392' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 08:59:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"backupManagementType": "AzureWorkload", "containerType": + "VMAppContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8", + "workloadType": "SQLDataBase"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + Content-Length: + - '289' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 08:59:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 08:59:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 08:59:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 08:59:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:15 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:27 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:31 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:00:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:27 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:01:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:15 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:27 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/225771c1-dbc5-448d-8e8e-8799c0728664?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-17T09:00:06.3971647Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container list + Connection: + - keep-alive + ParameterSetName: + - -v -g -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-17T09:00:06.3971647Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1171' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container show + Connection: + - keep-alive + ParameterSetName: + - -n -v -g -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-17T09:00:06.3971647Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container show + Connection: + - keep-alive + ParameterSetName: + - -n -v -g -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-17T09:00:06.3971647Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container list + Connection: + - keep-alive + ParameterSetName: + - -v -g -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-17T09:00:06.3971647Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1171' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-17T09:00:06.3971647Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1171' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"backupManagementType": "AzureWorkload", "containerType": + "VMAppContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8", + "workloadType": "SQLDataBase", "operationType": "Reregister"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + Content-Length: + - '320' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:02:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:27 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:31 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:03:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:15 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container re-register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -y -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/86ea5f71-a8da-4ed3-bacf-ef560257746e?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-17T09:00:06.3971647Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container list + Connection: + - keep-alive + ParameterSetName: + - -v -g -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-17T09:00:06.3971647Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":5,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1171' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2016-12-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 17 Jul 2019 09:04:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:04:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:27 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:05:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:15 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:06:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:07:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:07:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:07:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/67c5f53f-eccf-486a-bfde-327f90735e1a?api-version=2016-12-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-type: + - application/json; charset=utf-8 + date: + - Wed, 17 Jul 2019 09:07:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container list + Connection: + - keep-alive + ParameterSetName: + - -v -g -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Wed, 17 Jul 2019 09:07:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_item.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_item.yaml new file mode 100644 index 00000000000..4a92059bd63 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_item.yaml @@ -0,0 +1,7882 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container list + Connection: + - keep-alive + ParameterSetName: + - -v -g --backup-management-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathvm","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2019-09-30T06:21:20.8380525Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1108' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protectable-item show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --protectable-item-type --server-name --name --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1560' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:02:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-08-16T14:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-08-16T14:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":2}}' + headers: + cache-control: + - no-cache + content-length: + - '1066' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:02:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"backupManagementType": "AzureWorkload", "workloadType": + "SQLDataBase", "policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup", + "protectedItemType": "AzureVmWorkloadSQLDatabase"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + Content-Length: + - '319' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectedItems/sqldatabase;mssqlserver;msdb/operationsStatus/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 10 Oct 2019 11:02:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectedItems/sqldatabase;mssqlserver;msdb/operationResults/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + 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-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:02:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:03:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 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 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:03:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:03:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:03:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:03:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:03:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:03:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:03:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:03:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:03:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:03:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:03:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:03:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:03:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:03:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:03:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:03:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:03:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:03:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:04:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"InProgress","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:04:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/b171c089-cc18-451d-bc87-bae1f728e378?api-version=2016-12-01 + response: + body: + string: '{"id":"b171c089-cc18-451d-bc87-bae1f728e378","name":"b171c089-cc18-451d-bc87-bae1f728e378","status":"Succeeded","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"2019-10-10T11:02:51.4746456Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"94e88450-ebb5-4664-b2bd-3a41cdd15fea"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/94e88450-ebb5-4664-b2bd-3a41cdd15fea?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/94e88450-ebb5-4664-b2bd-3a41cdd15fea","name":"94e88450-ebb5-4664-b2bd-3a41cdd15fea","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M14.6082611S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"HourlyLogBackup"}},"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2019-10-10T11:02:51.4746456Z","endTime":"2019-10-10T11:04:06.0829067Z","activityId":"7ffe9a90-eb4d-11e9-879b-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '726' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:04: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container show + Connection: + - keep-alive + ParameterSetName: + - -n -v -g --backup-management-type --query + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathvm","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2019-09-30T06:21:20.8380525Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1096' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70370549673687","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}}' + headers: + cache-control: + - no-cache + content-length: + - '1334' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container show + Connection: + - keep-alive + ParameterSetName: + - -n -v -g --backup-management-type --query + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathvm","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2019-09-30T06:21:20.8380525Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1096' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70370549673687","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}}' + headers: + cache-control: + - no-cache + content-length: + - '1334' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70370549673687","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}}' + headers: + cache-control: + - no-cache + content-length: + - '1334' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:04:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item list + Connection: + - keep-alive + ParameterSetName: + - -g -v -c --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - 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=2017-07-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SQLDataBase%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;master","name":"SQLDataBase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"master","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T14:03:55.3499908Z","protectedItemDataSourceId":"70369306910062","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;model","name":"SQLDataBase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"model","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T10:36:34.7562221Z","protectedItemDataSourceId":"70369330846902","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70370549673687","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3800' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item list + Connection: + - keep-alive + ParameterSetName: + - -g -v -c --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectedItems?api-version=2017-07-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SQLDataBase%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;master","name":"SQLDataBase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"master","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T14:03:55.3499908Z","protectedItemDataSourceId":"70369306910062","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;model","name":"SQLDataBase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"model","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T10:36:34.7562221Z","protectedItemDataSourceId":"70369330846902","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70370549673687","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3800' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-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 --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectedItems?api-version=2017-07-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SQLDataBase%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;master","name":"SQLDataBase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"master","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-09T14:03:55.3499908Z","protectedItemDataSourceId":"70369306910062","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;model","name":"SQLDataBase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"model","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T10:36:34.7562221Z","protectedItemDataSourceId":"70369330846902","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70370549673687","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3800' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70370549673687","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}}' + headers: + cache-control: + - no-cache + content-length: + - '1334' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-08-16T14:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-08-16T14:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":3}}' + headers: + cache-control: + - no-cache + content-length: + - '1066' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"backupManagementType": "AzureWorkload", "workloadType": + "SQLDataBase", "containerName": "VMAppContainer;compute;sarath-rg;sarathvm", + "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm", + "policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup", + "protectedItemType": "AzureVmWorkloadSQLDatabase", "friendlyName": "msdb", "serverName": + "sarathvm", "parentName": "MSSQLSERVER", "parentType": "AzureVmWorkloadSQLInstance", + "protectionStatus": "Healthy", "protectionState": "IRPending", "lastBackupStatus": + "IRPending", "lastBackupErrorDetail": {"code": "Success", "message": ""}, "protectedItemDataSourceId": + "70370549673687", "protectedItemHealthStatus": "IRPending", "extendedInfo": + {"recoveryPointCount": 0, "policyState": "Consistent"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + Content-Length: + - '975' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationsStatus/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 10 Oct 2019 11:04:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationResults/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + pragma: + - no-cache + 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 item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:04:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:04:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:04:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:04:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:04:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:04:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:04:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:04:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:04:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:04:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:04:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:04:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:04:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:04:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"InProgress","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8be1a09d-60aa-4965-90b8-b363cc42828e?api-version=2016-12-01 + response: + body: + string: '{"id":"8be1a09d-60aa-4965-90b8-b363cc42828e","name":"8be1a09d-60aa-4965-90b8-b363cc42828e","status":"Succeeded","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"2019-10-10T11:04:14.4120128Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"16bb1420-9268-45c3-8d3d-72138bb3502e"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/16bb1420-9268-45c3-8d3d-72138bb3502e?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/16bb1420-9268-45c3-8d3d-72138bb3502e","name":"16bb1420-9268-45c3-8d3d-72138bb3502e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M12.249799S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"HourlyLogBackup"}},"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2019-10-10T11:04:14.4120128Z","endTime":"2019-10-10T11:05:26.6618118Z","activityId":"b112f552-eb4d-11e9-af03-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '725' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n --backup-management-type --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2019-10-10T11:03:19.1525472Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft + Azure Backup encountered an internal error.","recommendations":["Wait for + a few minutes and then try the operation again. If the issue persists, please + contact Microsoft support."]},"protectedItemDataSourceId":"70370549673687","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}}' + headers: + cache-control: + - no-cache + content-length: + - '1582' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2019-10-10T11:03:19.1525472Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft + Azure Backup encountered an internal error.","recommendations":["Wait for + a few minutes and then try the operation again. If the issue persists, please + contact Microsoft support."]},"protectedItemDataSourceId":"70370549673687","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}}' + headers: + cache-control: + - no-cache + content-length: + - '1582' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 10 Oct 2019 11:05:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupOperationResults/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + response: + body: + string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + response: + body: + string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + response: + body: + string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + response: + body: + string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + response: + body: + string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + response: + body: + string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + response: + body: + string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + response: + body: + string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + response: + body: + string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + response: + body: + string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + response: + body: + string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + response: + body: + string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + response: + body: + string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + response: + body: + string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + response: + body: + string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + response: + body: + string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + response: + body: + string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + response: + body: + string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + response: + body: + string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + response: + body: + string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + response: + body: + string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + response: + body: + string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:05:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + response: + body: + string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:06:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + response: + body: + string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"InProgress","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:06:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8456795d-ca4c-4a84-bfb9-d93d7745e3d1?api-version=2016-12-01 + response: + body: + string: '{"id":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","name":"8456795d-ca4c-4a84-bfb9-d93d7745e3d1","status":"Succeeded","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"2019-10-10T11:05:30.2901502Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"da82a630-90ce-450c-bf4d-9fa689014f9d"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:06:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/da82a630-90ce-450c-bf4d-9fa689014f9d?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/da82a630-90ce-450c-bf4d-9fa689014f9d","name":"da82a630-90ce-450c-bf4d-9fa689014f9d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT31.9373509S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2019-10-10T11:05:30.2901502Z","endTime":"2019-10-10T11:06:02.2275011Z","activityId":"de74c4b4-eb4d-11e9-912d-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '694' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 11:06: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_policy.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_policy.yaml new file mode 100644 index 00000000000..52b85fb61ef --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_policy.yaml @@ -0,0 +1,387 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup policy show + Connection: + - keep-alive + ParameterSetName: + - -g -v -n -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-01-08T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-01-08T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '1076' + content-type: + - application/json + date: + - Fri, 05 Jul 2019 11:37:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureWorkload", + "workLoadType": "SQLDataBase", "settings": {"timeZone": "UTC", "issqlcompression": + false, "isCompression": false}, "subProtectionPolicy": [{"policyType": "Full", + "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", "scheduleRunFrequency": + "Daily", "scheduleRunTimes": ["2019-01-08T20:00:00.000Z"], "scheduleWeeklyFrequency": + 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", "dailySchedule": + {"retentionTimes": ["2019-01-08T20:00:00.000Z"], "retentionDuration": {"count": + 30, "durationType": "Days"}}}}, {"policyType": "Log", "schedulePolicy": {"schedulePolicyType": + "LogSchedulePolicy", "scheduleFrequencyInMins": 60}, "retentionPolicy": {"retentionPolicyType": + "SimpleRetentionPolicy", "retentionDuration": {"count": 30, "durationType": + "Days"}}}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup policy new + Connection: + - keep-alive + Content-Length: + - '870' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v --policy -b -w -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-01-08T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-01-08T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '1094' + content-type: + - application/json + date: + - Fri, 05 Jul 2019 11:37: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-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup policy list + Connection: + - keep-alive + ParameterSetName: + - -g -v + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies?api-version=2017-07-01 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-01-08T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-01-08T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testsq","name":"testsq","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Sunday"],"scheduleRunTimes":["2019-04-05T08:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-04-05T08:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-04-05T08:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-04-05T08:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/sda","name":"sda","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":true,"isCompression":true},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-03-01T21:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-03-01T21:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-03-01T21:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-03-01T21:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-03-01T21:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/trypol","name":"trypol","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-03-20T01:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-03-20T01:00:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-03-20T01:00:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-03-20T01:00:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-03-20T01:00:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Sunday"],"scheduleRunTimes":["2019-03-06T15:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-03-06T15:00:00Z"],"retentionDuration":{"count":12,"durationType":"Weeks"}}},"instantRpRetentionRangeInDays":5,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-01-08T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-01-08T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testpoll","name":"testpoll","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-03-18T09:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-03-18T09:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-03-18T09:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-03-18T09:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-03-18T09:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testsqlpolicy","name":"testsqlpolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Sunday"],"scheduleRunTimes":["2019-01-25T10:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-01-25T10:00:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-01-25T10:00:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-01-25T10:00:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Differential","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Wednesday"],"scheduleRunTimes":["2017-03-07T02:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}]}' + headers: + cache-control: + - no-cache + content-length: + - '11064' + content-type: + - application/json + date: + - Fri, 05 Jul 2019 11:37:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureWorkload", + "workLoadType": "SQLDataBase", "settings": {"timeZone": "UTC", "issqlcompression": + true, "isCompression": true}, "subProtectionPolicy": [{"policyType": "Full", + "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", "scheduleRunFrequency": + "Daily", "scheduleRunTimes": ["2019-01-08T20:00:00.000Z"], "scheduleWeeklyFrequency": + 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", "dailySchedule": + {"retentionTimes": ["2019-01-08T20:00:00.000Z"], "retentionDuration": {"count": + 30, "durationType": "Days"}}}}, {"policyType": "Log", "schedulePolicy": {"schedulePolicyType": + "LogSchedulePolicy", "scheduleFrequencyInMins": 60}, "retentionPolicy": {"retentionPolicyType": + "SimpleRetentionPolicy", "retentionDuration": {"count": 30, "durationType": + "Days"}}}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup policy set + Connection: + - keep-alive + Content-Length: + - '868' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v --policy -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":true,"isCompression":true},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-01-08T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-01-08T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '1092' + content-type: + - application/json + date: + - Fri, 05 Jul 2019 11:37: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-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup policy show + Connection: + - keep-alive + ParameterSetName: + - -g -v -n -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":true,"isCompression":true},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-01-08T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-01-08T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '1092' + content-type: + - application/json + date: + - Fri, 05 Jul 2019 11:37:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup policy delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001?api-version=2016-12-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 05 Jul 2019 11:37:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup policy list + Connection: + - keep-alive + ParameterSetName: + - -g -v + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies?api-version=2017-07-01 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-01-08T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-01-08T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testsq","name":"testsq","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Sunday"],"scheduleRunTimes":["2019-04-05T08:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-04-05T08:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-04-05T08:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-04-05T08:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/sda","name":"sda","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":true,"isCompression":true},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-03-01T21:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-03-01T21:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-03-01T21:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-03-01T21:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-03-01T21:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/trypol","name":"trypol","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-03-20T01:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-03-20T01:00:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-03-20T01:00:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-03-20T01:00:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-03-20T01:00:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Sunday"],"scheduleRunTimes":["2019-03-06T15:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-03-06T15:00:00Z"],"retentionDuration":{"count":12,"durationType":"Weeks"}}},"instantRpRetentionRangeInDays":5,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testpoll","name":"testpoll","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-03-18T09:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-03-18T09:30:00Z"],"retentionDuration":{"count":180,"durationType":"Days"}},"weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-03-18T09:30:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-03-18T09:30:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-03-18T09:30:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/testsqlpolicy","name":"testsqlpolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Sunday"],"scheduleRunTimes":["2019-01-25T10:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","weeklySchedule":{"daysOfTheWeek":["Sunday"],"retentionTimes":["2019-01-25T10:00:00Z"],"retentionDuration":{"count":104,"durationType":"Weeks"}},"monthlySchedule":{"retentionScheduleFormatType":"Weekly","retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-01-25T10:00:00Z"],"retentionDuration":{"count":60,"durationType":"Months"}},"yearlySchedule":{"retentionScheduleFormatType":"Weekly","monthsOfYear":["January"],"retentionScheduleWeekly":{"daysOfTheWeek":["Sunday"],"weeksOfTheMonth":["First"]},"retentionTimes":["2019-01-25T10:00:00Z"],"retentionDuration":{"count":10,"durationType":"Years"}}}},{"policyType":"Differential","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Weekly","scheduleRunDays":["Wednesday"],"scheduleRunTimes":["2017-03-07T02:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":120},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":15,"durationType":"Days"}}}],"protectedItemsCount":0}}]}' + headers: + cache-control: + - no-cache + content-length: + - '9969' + content-type: + - application/json + date: + - Fri, 05 Jul 2019 11:37:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_protectable_item.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_protectable_item.yaml new file mode 100644 index 00000000000..2a12d6314ec --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_protectable_item.yaml @@ -0,0 +1,8399 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;00prjai32tb;mkheraniTest1","name":"VMAppContainer;Compute;00prjai32tb;mkheraniTest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"mkheraniTest1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai32tb/providers/Microsoft.Compute/virtualMachines/mkheraniTest1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;ASEBVTRG;asebvtseavm1","name":"VMAppContainer;Compute;ASEBVTRG;asebvtseavm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"asebvtseavm1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASEBVTRG/providers/Microsoft.Compute/virtualMachines/asebvtseavm1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;chandrikarg;testVMRetention2","name":"VMAppContainer;Compute;chandrikarg;testVMRetention2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"testVMRetention2","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testVMRetention2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;chandrikarg;testvmsql","name":"VMAppContainer;Compute;chandrikarg;testvmsql","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"testvmsql","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chandrikarg/providers/Microsoft.Compute/virtualMachines/testvmsql"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;Nilay-RG;nilay-test","name":"VMAppContainer;Compute;Nilay-RG;nilay-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilay-test","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilay-test"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;Nilay-RG;nilsha-bvt-vm","name":"VMAppContainer;Compute;Nilay-RG;nilsha-bvt-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilsha-bvt-vm","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-bvt-vm"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;Nilay-RG;nilsha-test","name":"VMAppContainer;Compute;Nilay-RG;nilsha-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilsha-test","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-test"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;PortalTestAutomation;RestoreTestcwiq","name":"VMAppContainer;Compute;PortalTestAutomation;RestoreTestcwiq","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RestoreTestcwiq","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PortalTestAutomation/providers/Microsoft.Compute/virtualMachines/RestoreTestcwiq"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;PortalTestAutomation;RestoreTestmayr","name":"VMAppContainer;Compute;PortalTestAutomation;RestoreTestmayr","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RestoreTestmayr","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PortalTestAutomation/providers/Microsoft.Compute/virtualMachines/RestoreTestmayr"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;PortalTestAutomation;RestoreTestphxd","name":"VMAppContainer;Compute;PortalTestAutomation;RestoreTestphxd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RestoreTestphxd","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PortalTestAutomation/providers/Microsoft.Compute/virtualMachines/RestoreTestphxd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;pstestVMRG1bca8f8e;pstestVM1bca8f8e","name":"VMAppContainer;Compute;pstestVMRG1bca8f8e;pstestVM1bca8f8e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestVM1bca8f8e","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestVMRG1bca8f8e/providers/Microsoft.Compute/virtualMachines/pstestVM1bca8f8e"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;riteshcRG;RestoreVM2","name":"VMAppContainer;Compute;riteshcRG;RestoreVM2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RestoreVM2","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/riteshcRG/providers/Microsoft.Compute/virtualMachines/RestoreVM2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;riteshcRG;RiteshRestore1","name":"VMAppContainer;Compute;riteshcRG;RiteshRestore1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"RiteshRestore1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/riteshcRG/providers/Microsoft.Compute/virtualMachines/RiteshRestore1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg;deletethis43234","name":"VMAppContainer;Compute;shswain-rg;deletethis43234","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"deletethis43234","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg/providers/Microsoft.Compute/virtualMachines/deletethis43234"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg;dsadsa","name":"VMAppContainer;Compute;shswain-rg;dsadsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"dsadsa","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg/providers/Microsoft.Compute/virtualMachines/dsadsa"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg;dsfsdfd","name":"VMAppContainer;Compute;shswain-rg;dsfsdfd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"dsfsdfd","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg/providers/Microsoft.Compute/virtualMachines/dsfsdfd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg;shswain-sles-1","name":"VMAppContainer;Compute;shswain-rg;shswain-sles-1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswain-sles-1","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg/providers/Microsoft.Compute/virtualMachines/shswain-sles-1"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;sisi-RSV;sisi-mercury","name":"VMAppContainer;Compute;sisi-RSV;sisi-mercury","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sisi-mercury","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '13092' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:11:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"backupManagementType": "AzureWorkload", "containerType": + "VMAppContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8", + "workloadType": "SQLDataBase"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + Content-Length: + - '289' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:11:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:11:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:11:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:11:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:11:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:11:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:15 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:12:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:15 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:13:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:14:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:14:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:14:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:14:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:14:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:14:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:14:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:14:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:14:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:14:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:14:15 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:14:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:14:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:14:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:14:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:14:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/25c297f2-2842-4323-8224-98394b39dc7b?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-08T09:12:01.7634888Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:14:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container list + Connection: + - keep-alive + ParameterSetName: + - -v -g -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-08T09:12:01.7634888Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1171' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:14:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container show + Connection: + - keep-alive + ParameterSetName: + - -n -v -g --query -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-08T09:12:01.7634888Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1159' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:14:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protectable-item list + Connection: + - keep-alive + ParameterSetName: + - -g -v -w + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":4,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;testdb1","name":"sqldatabase;mssqlserver;testdb1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"testdb1","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3966' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:14:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protectable-item initialize + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -v -w -c + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/inquire?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 08 Jul 2019 09:15:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/bfb0d35f-69ab-4fc4-8f93-7752db009d33?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protectable-item list + Connection: + - keep-alive + ParameterSetName: + - -g -v -w + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":5,"subprotectableitemcount":5,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;newdb","name":"sqldatabase;mssqlserver;newdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"newdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;testdb1","name":"sqldatabase;mssqlserver;testdb1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"testdb1","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '4744' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:15:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protectable-item show + Connection: + - keep-alive + ParameterSetName: + - -g -v -n -w -p -s + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":5,"subprotectableitemcount":5,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;newdb","name":"sqldatabase;mssqlserver;newdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"newdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;testdb1","name":"sqldatabase;mssqlserver;testdb1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"testdb1","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '4744' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:15:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2016-12-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 08 Jul 2019 09:15:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:15:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:15:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:15:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:15:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:15:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:15:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:15:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:15:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:15:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:15:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:15 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:31 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:16:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:17:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:17:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:17:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:17:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:17:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:17:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:17:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:17:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:17:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:17:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:17:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:17:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:17:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:17:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:17:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:17:27 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:17:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/f531b3e9-e326-4ead-949a-32db8aea47f0?api-version=2016-12-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jul 2019 09:17:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container list + Connection: + - keep-alive + ParameterSetName: + - -v -g -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 09:17:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_protection.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_protection.yaml new file mode 100644 index 00000000000..52351f96293 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_protection.yaml @@ -0,0 +1,5143 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container list + Connection: + - keep-alive + ParameterSetName: + - -v -g --backup-management-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathvm","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2019-09-30T06:21:20.8380525Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1108' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:22:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protectable-item show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --protectable-item-type --server-name --name --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1560' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:22:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-08-16T14:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-08-16T14:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":2}}' + headers: + cache-control: + - no-cache + content-length: + - '1066' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:22:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"backupManagementType": "AzureWorkload", "workloadType": + "SQLDataBase", "policyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup", + "protectedItemType": "AzureVmWorkloadSQLDatabase"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + Content-Length: + - '319' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectedItems/sqldatabase;mssqlserver;msdb/operationsStatus/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 10 Oct 2019 10:22:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectedItems/sqldatabase;mssqlserver;msdb/operationResults/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:22:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:22:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:22:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:22:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:22:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:22:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:22:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10: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 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10: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 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:23:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:24:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"InProgress","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:24:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1c1b30f4-af43-4257-8325-1a9c873206eb?api-version=2016-12-01 + response: + body: + string: '{"id":"1c1b30f4-af43-4257-8325-1a9c873206eb","name":"1c1b30f4-af43-4257-8325-1a9c873206eb","status":"Succeeded","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"2019-10-10T10:22:47.6098922Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"ee4a1396-0056-4508-b00f-dc270c381dd6"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:24:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/ee4a1396-0056-4508-b00f-dc270c381dd6?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/ee4a1396-0056-4508-b00f-dc270c381dd6","name":"ee4a1396-0056-4508-b00f-dc270c381dd6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M15.3444206S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"HourlyLogBackup"}},"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2019-10-10T10:22:47.6098922Z","endTime":"2019-10-10T10:24:02.9543128Z","activityId":"e6eda092-eb47-11e9-9c8f-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '726' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:24:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container show + Connection: + - keep-alive + ParameterSetName: + - -n -v -g --backup-management-type --query + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathvm","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2019-09-30T06:21:20.8380525Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1096' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:24:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-type --retain-until --enable-compression + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70368988813396","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}}' + headers: + cache-control: + - no-cache + content-length: + - '1334' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:24:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"objectType": "AzureWorkloadBackupRequest", "backupType": + "Full", "enableCompression": false, "recoveryPointExpiryTimeInUTC": "2020-07-01T00:00:00.000Z"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + Content-Length: + - '170' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -v -g -i -c --backup-type --retain-until --enable-compression + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/backup?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationsStatus/3a7d53bf-3f1a-44a3-bf00-c9d25ffce92d?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 10 Oct 2019 10:24:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationResults/3a7d53bf-3f1a-44a3-bf00-c9d25ffce92d?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-type --retain-until --enable-compression + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3a7d53bf-3f1a-44a3-bf00-c9d25ffce92d?api-version=2016-12-01 + response: + body: + string: '{"id":"3a7d53bf-3f1a-44a3-bf00-c9d25ffce92d","name":"3a7d53bf-3f1a-44a3-bf00-c9d25ffce92d","status":"InProgress","startTime":"2019-10-10T10:24:06.044271Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:24:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-type --retain-until --enable-compression + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/3a7d53bf-3f1a-44a3-bf00-c9d25ffce92d?api-version=2016-12-01 + response: + body: + string: '{"id":"3a7d53bf-3f1a-44a3-bf00-c9d25ffce92d","name":"3a7d53bf-3f1a-44a3-bf00-c9d25ffce92d","status":"Succeeded","startTime":"2019-10-10T10:24:06.044271Z","endTime":"2019-10-10T10:24:06.044271Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c6330efc-4910-4dd9-af54-086b0946e550"}}' + headers: + cache-control: + - no-cache + content-length: + - '302' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:24:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-type --retain-until --enable-compression + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550","name":"c6330efc-4910-4dd9-af54-086b0946e550","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.8807577S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T10:24:06.044271Z","activityId":"15a61b18-eb48-11e9-9d5b-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:24:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550","name":"c6330efc-4910-4dd9-af54-086b0946e550","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3.3115423S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T10:24:06.044271Z","activityId":"15a61b18-eb48-11e9-9d5b-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:24: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550","name":"c6330efc-4910-4dd9-af54-086b0946e550","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3.6238103S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T10:24:06.044271Z","activityId":"15a61b18-eb48-11e9-9d5b-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:24: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550","name":"c6330efc-4910-4dd9-af54-086b0946e550","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT33.9224343S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T10:24:06.044271Z","activityId":"15a61b18-eb48-11e9-9d5b-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '741' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:24:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550","name":"c6330efc-4910-4dd9-af54-086b0946e550","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M4.2398955S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T10:24:06.044271Z","activityId":"15a61b18-eb48-11e9-9d5b-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '742' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:25:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550","name":"c6330efc-4910-4dd9-af54-086b0946e550","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M35.1455037S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T10:24:06.044271Z","activityId":"15a61b18-eb48-11e9-9d5b-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '743' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:25:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550","name":"c6330efc-4910-4dd9-af54-086b0946e550","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M5.4451946S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T10:24:06.044271Z","activityId":"15a61b18-eb48-11e9-9d5b-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '742' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:26:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550","name":"c6330efc-4910-4dd9-af54-086b0946e550","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M36.2763183S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-10-10T10:24:06.044271Z","activityId":"15a61b18-eb48-11e9-9d5b-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '743' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/c6330efc-4910-4dd9-af54-086b0946e550","name":"c6330efc-4910-4dd9-af54-086b0946e550","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M3.1249967S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"Completed"}],"propertyBag":{"Data Transferred (in + MB)":"20.1147"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup + (Full)","status":"Completed","startTime":"2019-10-10T10:24:06.044271Z","endTime":"2019-10-10T10:27:09.1692677Z","activityId":"15a61b18-eb48-11e9-9d5b-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '824' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:27: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n --backup-management-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T10:24:06.044271Z","protectedItemDataSourceId":"70368988813396","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T10:24:46Z","recoveryPointCount":1,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T10:24:46Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1409' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:27:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T10:24:06.044271Z","protectedItemDataSourceId":"70368988813396","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T10:24:46Z","recoveryPointCount":1,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T10:24:46Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1409' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:27:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"policyId": "", "protectedItemType": "AzureVmWorkloadSQLDatabase", + "protectionState": "ProtectionStopped"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + Content-Length: + - '123' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationsStatus/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 10 Oct 2019 10:27:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationResults/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + pragma: + - no-cache + 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: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + response: + body: + string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:27:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + response: + body: + string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:27:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + response: + body: + string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:27:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + response: + body: + string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:27:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + response: + body: + string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:27:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + response: + body: + string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:27:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + response: + body: + string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:27:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + response: + body: + string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:27:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + response: + body: + string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:27:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + response: + body: + string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:27:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + response: + body: + string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:28:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + response: + body: + string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:28:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + response: + body: + string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:28:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + response: + body: + string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:28:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + response: + body: + string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:28:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + response: + body: + string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:28:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + response: + body: + string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:28:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + response: + body: + string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:28:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + response: + body: + string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:28:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + response: + body: + string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:28:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + response: + body: + string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:28:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + response: + body: + string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"InProgress","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:28:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/1d4aebd2-d76d-42a5-8a04-da1336a1bbf3?api-version=2016-12-01 + response: + body: + string: '{"id":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","name":"1d4aebd2-d76d-42a5-8a04-da1336a1bbf3","status":"Succeeded","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"2019-10-10T10:27:45.4795924Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f5c2c4f9-43f8-43a9-9c16-ccd32ed936d2"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:28:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -c --backup-management-type -y + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/f5c2c4f9-43f8-43a9-9c16-ccd32ed936d2?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/f5c2c4f9-43f8-43a9-9c16-ccd32ed936d2","name":"f5c2c4f9-43f8-43a9-9c16-ccd32ed936d2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT32.263458S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"DisableBackup","status":"Completed","startTime":"2019-10-10T10:27:45.4795924Z","endTime":"2019-10-10T10:28:17.7430504Z","activityId":"98a80dd2-eb48-11e9-884d-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '690' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:28: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n --backup-management-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T10:24:06.044271Z","protectedItemDataSourceId":"70368988813396","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T10:24:46Z","recoveryPointCount":1,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastRecoveryPoint":"2019-10-10T10:24:46Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1239' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 10:28:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_restore.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_restore.yaml new file mode 100644 index 00000000000..0065ccda1d7 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_restore.yaml @@ -0,0 +1,3611 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container list + Connection: + - keep-alive + ParameterSetName: + - -v -g --backup-management-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathvm","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2019-09-30T06:21:20.8380525Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1108' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:22:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container show + Connection: + - keep-alive + ParameterSetName: + - -n -v -g --backup-management-type --query + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathvm","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2019-09-30T06:21:20.8380525Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '1096' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:22:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n --backup-management-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T12:02:23.9240817Z","protectedItemDataSourceId":"70370103122816","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T12:01:23Z","recoveryPointCount":1,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T12:01:23Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1410' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:22:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint list + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --workload-type --query + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T12:02:23.9240817Z","protectedItemDataSourceId":"70370103122816","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T12:01:23Z","recoveryPointCount":1,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T12:01:23Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1410' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:22:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint list + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i --workload-type --query + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints?api-version=2016-12-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/41252921875258","name":"41252921875258","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2019-10-10T12:01:23Z","type":"Full"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLPointInTimeRecoveryPoint","timeRanges":[],"type":"Log"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1119' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:22:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protectable-item show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --protectable-item-type --server-name --name --workload-type + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":4,"subprotectableitemcount":4,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectableItems/sqldatabase;mssqlserver;msdb_restored_sarath","name":"sqldatabase;mssqlserver;msdb_restored_sarath","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb_restored_sarath","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1607' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:22:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T12:02:23.9240817Z","protectedItemDataSourceId":"70370103122816","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T12:01:23Z","recoveryPointCount":1,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T12:01:23Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1410' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:22:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T12:02:23.9240817Z","protectedItemDataSourceId":"70370103122816","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T12:01:23Z","recoveryPointCount":1,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T12:01:23Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1410' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:22:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints/41252921875258?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/41252921875258","name":"41252921875258","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2019-10-10T12:01:23Z","dataDirectoryPaths":[{"type":"Data","path":"C:\\Program + Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBData.mdf","logicalName":"MSDBData"},{"type":"Log","path":"C:\\Program + Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBLog.ldf","logicalName":"MSDBLog"}]},"recoveryPointTimeInUTC":"2019-10-10T12:01:23Z","type":"Full"}}' + headers: + cache-control: + - no-cache + content-length: + - '914' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:22:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/items?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadItemType%20eq%20%27SQLInstance%27 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathvm/protectableItems/SQLInstance;MSSQLSERVER","name":"SQLInstance;MSSQLSERVER","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/items","properties":{"dataDirectoryPaths":[{"type":"Data","path":"C:\\Program + Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\"},{"type":"Log","path":"C:\\Program + Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\"}],"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":true,"subinquireditemcount":0,"subWorkloadItemCount":4,"backupManagementType":"AzureWorkload","workloadType":"SQL","workloadItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '915' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:22:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"objectType": "AzureWorkloadSQLRestoreRequest", "recoveryType": + "AlternateLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm", + "targetInfo": {"overwriteOption": "Overwrite", "containerId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm", + "databaseName": "MSSQLSERVER/msdb_restored_10_10_2019_1752"}, "shouldUseAlternateTargetLocation": + true, "isNonRecoverable": false, "alternateDirectoryPaths": [{"mappingType": + "Data", "sourceLogicalName": "MSDBData", "sourcePath": "C:\\Program Files\\Microsoft + SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBData.mdf", "targetPath": "C:\\Program + Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBData_1570710179.mdf"}, + {"mappingType": "Log", "sourceLogicalName": "MSDBLog", "sourcePath": "C:\\Program + Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBLog.ldf", + "targetPath": "C:\\Program Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBLog_1570710179.ldf"}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + Content-Length: + - '1250' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --vault-name -g --recovery-config + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints/41252921875258/restore?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationsStatus/80aa22d7-88e2-491d-a9ea-6e924584046e?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 10 Oct 2019 12:23:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationResults/80aa22d7-88e2-491d-a9ea-6e924584046e?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --recovery-config + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/80aa22d7-88e2-491d-a9ea-6e924584046e?api-version=2016-12-01 + response: + body: + string: '{"id":"80aa22d7-88e2-491d-a9ea-6e924584046e","name":"80aa22d7-88e2-491d-a9ea-6e924584046e","status":"InProgress","startTime":"2019-10-10T12:22:59.9406697Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:23:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --recovery-config + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/80aa22d7-88e2-491d-a9ea-6e924584046e?api-version=2016-12-01 + response: + body: + string: '{"id":"80aa22d7-88e2-491d-a9ea-6e924584046e","name":"80aa22d7-88e2-491d-a9ea-6e924584046e","status":"Succeeded","startTime":"2019-10-10T12:22:59.9406697Z","endTime":"2019-10-10T12:22:59.9406697Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"4e9330a4-79e7-42c6-a26c-c2c00433fda6"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:23:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --recovery-config + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6","name":"4e9330a4-79e7-42c6-a26c-c2c00433fda6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.7252878S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:22:59.9406697Z","activityId":"b26678e8-eb58-11e9-b3b3-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '790' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:23: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6","name":"4e9330a4-79e7-42c6-a26c-c2c00433fda6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3.6094663S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:22:59.9406697Z","activityId":"b26678e8-eb58-11e9-b3b3-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '790' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:23: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6","name":"4e9330a4-79e7-42c6-a26c-c2c00433fda6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3.9309371S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:22:59.9406697Z","activityId":"b26678e8-eb58-11e9-b3b3-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '790' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:23: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6","name":"4e9330a4-79e7-42c6-a26c-c2c00433fda6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT34.2380705S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:22:59.9406697Z","activityId":"b26678e8-eb58-11e9-b3b3-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '791' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12: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: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6","name":"4e9330a4-79e7-42c6-a26c-c2c00433fda6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M4.5298211S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:22:59.9406697Z","activityId":"b26678e8-eb58-11e9-b3b3-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '792' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:24: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6","name":"4e9330a4-79e7-42c6-a26c-c2c00433fda6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M35.1954462S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:22:59.9406697Z","activityId":"b26678e8-eb58-11e9-b3b3-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '793' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:24:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6","name":"4e9330a4-79e7-42c6-a26c-c2c00433fda6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M5.5580799S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:22:59.9406697Z","activityId":"b26678e8-eb58-11e9-b3b3-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '792' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:25:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6","name":"4e9330a4-79e7-42c6-a26c-c2c00433fda6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M36.0757133S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:22:59.9406697Z","activityId":"b26678e8-eb58-11e9-b3b3-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '793' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:25:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/4e9330a4-79e7-42c6-a26c-c2c00433fda6","name":"4e9330a4-79e7-42c6-a26c-c2c00433fda6","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M2.5992804S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"Completed"}],"propertyBag":{"Data Transferred (in + MB)":"20.1147","Job Type":"Recovery to an alternate database","RestoreRecoveryPointTime":"10/10/2019 + 12:01:23 PM","RestoreDestination":"sarathvm/MSSQLSERVER/msdb_restored_10_10_2019_1752"}},"entityFriendlyName":"MSSQLSERVER/msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore (Full)","status":"Completed","startTime":"2019-10-10T12:22:59.9406697Z","endTime":"2019-10-10T12:26:02.5399501Z","activityId":"b26678e8-eb58-11e9-b3b3-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '1001' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:26:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --restore-mode --item-name --container-name --rp-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T12:02:23.9240817Z","protectedItemDataSourceId":"70370103122816","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T12:01:23Z","recoveryPointCount":1,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T12:01:23Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1410' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:26:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --restore-mode --item-name --container-name --rp-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T12:02:23.9240817Z","protectedItemDataSourceId":"70370103122816","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T12:01:23Z","recoveryPointCount":1,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T12:01:23Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1410' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:26:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --restore-mode --item-name --container-name --rp-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints/41252921875258?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/41252921875258","name":"41252921875258","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2019-10-10T12:01:23Z","dataDirectoryPaths":[{"type":"Data","path":"C:\\Program + Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBData.mdf","logicalName":"MSDBData"},{"type":"Log","path":"C:\\Program + Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBLog.ldf","logicalName":"MSDBLog"}]},"recoveryPointTimeInUTC":"2019-10-10T12:01:23Z","type":"Full"}}' + headers: + cache-control: + - no-cache + content-length: + - '914' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:26:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"objectType": "AzureWorkloadSQLRestoreRequest", "recoveryType": + "OriginalLocation", "shouldUseAlternateTargetLocation": true, "isNonRecoverable": + false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --vault-name -g --recovery-config + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints/41252921875258/restore?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationsStatus/14ac9dda-0874-4243-bb0d-d33a49bbe1b2?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 10 Oct 2019 12:26:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationResults/14ac9dda-0874-4243-bb0d-d33a49bbe1b2?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --recovery-config + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14ac9dda-0874-4243-bb0d-d33a49bbe1b2?api-version=2016-12-01 + response: + body: + string: '{"id":"14ac9dda-0874-4243-bb0d-d33a49bbe1b2","name":"14ac9dda-0874-4243-bb0d-d33a49bbe1b2","status":"InProgress","startTime":"2019-10-10T12:26:39.4159727Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:26:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --recovery-config + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14ac9dda-0874-4243-bb0d-d33a49bbe1b2?api-version=2016-12-01 + response: + body: + string: '{"id":"14ac9dda-0874-4243-bb0d-d33a49bbe1b2","name":"14ac9dda-0874-4243-bb0d-d33a49bbe1b2","status":"Succeeded","startTime":"2019-10-10T12:26:39.4159727Z","endTime":"2019-10-10T12:26:39.4159727Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:26:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - --vault-name -g --recovery-config + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","name":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.2751512S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:26:39.4159727Z","activityId":"34e806b4-eb59-11e9-9e40-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '790' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:26: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","name":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.7598595S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:26:39.4159727Z","activityId":"34e806b4-eb59-11e9-9e40-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '790' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","name":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3.0580689S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:26:39.4159727Z","activityId":"34e806b4-eb59-11e9-9e40-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '790' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","name":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT33.5785358S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:26:39.4159727Z","activityId":"34e806b4-eb59-11e9-9e40-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '791' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:27: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","name":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M3.9272916S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:26:39.4159727Z","activityId":"34e806b4-eb59-11e9-9e40-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '792' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:27: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","name":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M34.3645516S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:26:39.4159727Z","activityId":"34e806b4-eb59-11e9-9e40-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '793' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:28: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","name":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M5.1051735S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:26:39.4159727Z","activityId":"34e806b4-eb59-11e9-9e40-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '792' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","name":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M35.9436843S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:26:39.4159727Z","activityId":"34e806b4-eb59-11e9-9e40-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '793' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","name":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M6.2452767S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:26:39.4159727Z","activityId":"34e806b4-eb59-11e9-9e40-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '792' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:29: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","name":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M36.5421707S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:26:39.4159727Z","activityId":"34e806b4-eb59-11e9-9e40-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '793' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:30:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","name":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT4M6.8100728S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"MSSQLSERVER/msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-10-10T12:26:39.4159727Z","activityId":"34e806b4-eb59-11e9-9e40-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '792' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:30:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","name":"a47ca1e9-b340-4fbe-90c3-ea683c79bc2c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT4M33.7787153S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"Completed"}],"propertyBag":{"Data Transferred (in + MB)":"20.1147","Job Type":"Recovery to the original database","RestoreRecoveryPointTime":"10/10/2019 + 12:01:23 PM","RestoreDestination":"sarathvm/MSSQLSERVER/msdb"}},"entityFriendlyName":"MSSQLSERVER/msdb + [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore (Full)","status":"Completed","startTime":"2019-10-10T12:26:39.4159727Z","endTime":"2019-10-10T12:31:13.194688Z","activityId":"34e806b4-eb59-11e9-9e40-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '976' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:31: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2016-12-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-10-10T12:02:23.9240817Z","protectedItemDataSourceId":"70370103122816","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-10-10T12:01:23Z","recoveryPointCount":1,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2019-10-10T12:01:23Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1410' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:31:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 10 Oct 2019 12:31:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupOperationResults/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:31:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:31:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:31:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:31:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12: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 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12: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 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:31:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:31:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:31:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:32:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:32:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:32:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:32:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:32:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:32:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:32:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12: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 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:32:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:32:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:32:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:32:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:32:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:32:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:32:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"InProgress","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12:32:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5?api-version=2016-12-01 + response: + body: + string: '{"id":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","name":"14acbc44-cf4c-4c3e-b6f4-6a47aafa26e5","status":"Succeeded","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"2019-10-10T12:31:47.9798841Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"4468c606-306c-4e8f-a554-3fb8453772ca"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12: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 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.7.4 (Windows-10-10.0.17763-SP0) msrest/0.6.8 msrest_azure/0.6.1 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.73 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/4468c606-306c-4e8f-a554-3fb8453772ca?api-version=2017-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sarath-rg/providers/microsoft.recoveryservices/vaults/sarath-vault/backupJobs/4468c606-306c-4e8f-a554-3fb8453772ca","name":"4468c606-306c-4e8f-a554-3fb8453772ca","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT33.0290175S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2019-10-10T12:31:47.9798841Z","endTime":"2019-10-10T12:32:21.0089016Z","activityId":"ecaf8640-eb59-11e9-9d1c-186024943d4f"}}' + headers: + cache-control: + - no-cache + content-length: + - '694' + content-type: + - application/json + date: + - Thu, 10 Oct 2019 12: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_rp.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_rp.yaml new file mode 100644 index 00000000000..5be4b1be73d --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_rp.yaml @@ -0,0 +1,7539 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container list + Connection: + - keep-alive + ParameterSetName: + - -v -g -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2019-07-08T05:02:19.5060926Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1171' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protectable-item show + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -s -n -w + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectableItems?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":4,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;testdb1","name":"sqldatabase;mssqlserver;testdb1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"testdb1","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3966' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-01-08T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-01-08T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}' + headers: + cache-control: + - no-cache + content-length: + - '1076' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"backupManagementType": "AzureWorkload", "workloadType": + "SQLDataBase", "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup", + "protectedItemType": "AzureVmWorkloadSQLDatabase"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + Content-Length: + - '329' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer%3Bcompute%3Bpstestwlrg1bca8%3Bpstestwlvm1bca8/protectedItems/sqldatabase%3Bmssqlserver%3Btestdb1?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/sqldatabase;mssqlserver;testdb1/operationsStatus/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 08 Jul 2019 05:04:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/sqldatabase;mssqlserver;testdb1/operationResults/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"InProgress","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/7d28d631-e0a1-47e0-a0b7-903f0fb20429?api-version=2016-12-01 + response: + body: + string: '{"id":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","name":"7d28d631-e0a1-47e0-a0b7-903f0fb20429","status":"Succeeded","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"2019-07-08T05:04:40.8344396Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"7b29b348-86be-4292-a3b0-f26bfaa53563"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p -p + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/7b29b348-86be-4292-a3b0-f26bfaa53563?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/7b29b348-86be-4292-a3b0-f26bfaa53563","name":"7b29b348-86be-4292-a3b0-f26bfaa53563","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M14.0277697S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"HourlyLogBackup"}},"entityFriendlyName":"testdb1","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2019-07-08T05:04:40.8344396Z","endTime":"2019-07-08T05:05:54.8622093Z","activityId":"e3b789d4-a13d-11e9-b542-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '739' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint list + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -w --query + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/protectedItems/SQLDataBase%3BMSSQLSERVER%3Btestdb1?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/SQLDataBase;mssqlserver;testdb1","name":"SQLDataBase;mssqlserver;testdb1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"testdb1","serverName":"pstestwlvm1bca8","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"52777531946675","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup"}}' + headers: + cache-control: + - no-cache + content-length: + - '1409' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint list + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -w --query + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bpstestwlrg1bca8%3Bpstestwlvm1bca8/protectedItems/SQLDataBase%3Bmssqlserver%3Btestdb1/recoveryPoints?api-version=2016-12-01 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/SQLDataBase;mssqlserver;testdb1/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLPointInTimeRecoveryPoint","timeRanges":[],"type":"Log"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '591' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint logchain show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -w + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/protectedItems/SQLDataBase%3BMSSQLSERVER%3Btestdb1?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/SQLDataBase;mssqlserver;testdb1","name":"SQLDataBase;mssqlserver;testdb1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"testdb1","serverName":"pstestwlvm1bca8","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"52777531946675","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup"}}' + headers: + cache-control: + - no-cache + content-length: + - '1409' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:05:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint logchain show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -w + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bpstestwlrg1bca8%3Bpstestwlvm1bca8/protectedItems/SQLDataBase%3Bmssqlserver%3Btestdb1/recoveryPoints?api-version=2016-12-01&$filter=restorePointQueryType%20eq%20%27Log%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/SQLDataBase;mssqlserver;testdb1/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLPointInTimeRecoveryPoint","timeRanges":[],"type":"Log"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '591' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint logchain show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -w + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/protectedItems/SQLDataBase%3BMSSQLSERVER%3Btestdb1?api-version=2016-12-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/SQLDataBase;mssqlserver;testdb1","name":"SQLDataBase;mssqlserver;testdb1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"testdb1","serverName":"pstestwlvm1bca8","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"52777531946675","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup"}}' + headers: + cache-control: + - no-cache + content-length: + - '1409' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoverypoint logchain show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -w + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bpstestwlrg1bca8%3Bpstestwlvm1bca8/protectedItems/SQLDataBase%3Bmssqlserver%3Btestdb1/recoveryPoints?api-version=2016-12-01&$filter=restorePointQueryType%20eq%20%27Log%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/SQLDataBase;mssqlserver;testdb1/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLPointInTimeRecoveryPoint","timeRanges":[],"type":"Log"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '591' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer%3Bcompute%3Bpstestwlrg1bca8%3Bpstestwlvm1bca8/protectedItems/sqldatabase%3Bmssqlserver%3Btestdb1?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 08 Jul 2019 05:06:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperationResults/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + response: + body: + string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + response: + body: + string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + response: + body: + string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + response: + body: + string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + response: + body: + string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + response: + body: + string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + response: + body: + string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + response: + body: + string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + response: + body: + string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + response: + body: + string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + response: + body: + string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + response: + body: + string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + response: + body: + string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + response: + body: + string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + response: + body: + string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + response: + body: + string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + response: + body: + string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + response: + body: + string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + response: + body: + string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + response: + body: + string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + response: + body: + string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + response: + body: + string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + response: + body: + string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"InProgress","startTime":"2019-07-08T05:06:02.547331Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperations/b3383f55-49fb-42d9-8207-7fc250283dfa?api-version=2016-12-01 + response: + body: + string: '{"id":"b3383f55-49fb-42d9-8207-7fc250283dfa","name":"b3383f55-49fb-42d9-8207-7fc250283dfa","status":"Succeeded","startTime":"2019-07-08T05:06:02.547331Z","endTime":"2019-07-08T05:06:02.547331Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"057e5a88-ecb6-448c-9eeb-2d8b35a74f53"}}' + headers: + cache-control: + - no-cache + content-length: + - '302' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y --delete-backup-data + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/057e5a88-ecb6-448c-9eeb-2d8b35a74f53?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/057e5a88-ecb6-448c-9eeb-2d8b35a74f53","name":"057e5a88-ecb6-448c-9eeb-2d8b35a74f53","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT32.1883808S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"testdb1","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2019-07-08T05:06:02.547331Z","endTime":"2019-07-08T05:06:34.7357118Z","activityId":"14d6e0c6-a13e-11e9-86bc-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '706' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2016-12-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 08 Jul 2019 05:06:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:06:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:15 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:27 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:31 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/fb4e55d1-40f8-45eb-8da6-53a6b3485d08?api-version=2016-12-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-type: + - application/json; charset=utf-8 + date: + - Mon, 08 Jul 2019 05:07:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container list + Connection: + - keep-alive + ParameterSetName: + - -v -g -b + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2016-12-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:07:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_afs_commands.py b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_afs_commands.py index 305d571f5e6..6cae1c677db 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_afs_commands.py +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_afs_commands.py @@ -391,7 +391,7 @@ def test_afs_backup_policy(self, resource_group, vault_name, storage_account, af self.kwargs['policy1_json']['properties']['retentionPolicy']['dailySchedule']['retentionDuration']['count'] = 25 self.kwargs['policy1_json'] = json.dumps(self.kwargs['policy1_json']) - self.cmd("backup policy create -g {rg} -v {vault} --policy '{policy1_json}' --name {policy2}") + self.cmd("backup policy create -g {rg} -v {vault} --policy '{policy1_json}' --name {policy2} --backup-management-type {type}") self.kwargs['policy2_json'] = self.cmd('backup policy show -g {rg} -v {vault} --n {policy2}', checks=[ self.check("name", '{policy2}'), diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_workload_commands.py b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_workload_commands.py new file mode 100644 index 00000000000..24181007449 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_workload_commands.py @@ -0,0 +1,926 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import unittest + +from azure.cli.testsdk import ScenarioTest, record_only +import json +import os + + +id_sql = '/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8' +id_hana = '/subscriptions/e3d2d341-4ddb-4c5d-9121-69b7e719485e/resourceGroups/IDCDemo/providers/Microsoft.Compute/virtualMachines/HANADemoIDC3' +item_id_sql = '/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/sqldatabase;mssqlserver;testdb1' +item_id_hana = '/Subscriptions/e3d2d341-4ddb-4c5d-9121-69b7e719485e/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;IDCDemo;HANADemoIDC3/protectedItems/SAPHanaDatabase;h22;h22' +sub_sql = 'da364f0f-307b-41c9-9d47-b7413ec45535' +sub_hana = 'e3d2d341-4ddb-4c5d-9121-69b7e719485e' +rg_sql = 'pstestwlRG1bca8' +rg_hana = 'IDCDemo' +vault_sql = 'pstestwlRSV1bca8' +vault_hana = 'IDCDemoVault' +container_sql = 'VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8' +container_hana = 'VMAppContainer;Compute;IDCDemo;HANADemoIDC3' +container_friendly_sql = 'pstestwlvm1bca8' +container_friendly_hana = 'HANADemoIDC3' +item_auto_sql = 'SQLInstance;mssqlserver' +item_auto_hana = 'SAPHanaSystem;H22' +item1_sql = 'SQLDataBase;MSSQLSERVER;testdb1' +item2_sql = 'msdb' +item1_hana = 'SAPHanaDatabase;H22;h22' +item2_hana = 'SYSTEMDB' +backup_entity_friendly_name_hana = 'H22/H22 [HANADemoIDC3]' +backup_entity_friendly_name_sql = 'MSSQLSERVER/testdb1 [pstestwlvm1bca8]' +item_id_hana_2 = '/Subscriptions/e3d2d341-4ddb-4c5d-9121-69b7e719485e/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;IDCDemo;HANADemoIDC3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath' + + +class BackupTests(ScenarioTest, unittest.TestCase): + @record_only() + def test_backup_wl_sql_container(self): + + self.kwargs.update({ + 'vault': vault_sql, + 'name': container_sql, + 'fname': container_friendly_sql, + 'rg': rg_sql, + 'wt': 'MSSQL', + 'sub': sub_sql, + 'id': id_sql + }) + + self.cmd('backup container register -v {vault} -g {rg} --backup-management-type AzureWorkload --workload-type {wt} --resource-id {id}') + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 1)]) + + container_json = self.cmd('backup container show -n {name} -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check('properties.friendlyName', '{fname}'), + self.check('properties.healthStatus', 'Healthy'), + self.check('properties.registrationStatus', 'Registered'), + self.check('resourceGroup', '{rg}') + ]).get_output_in_json() + + self.kwargs['container_name'] = container_json['name'] + + self.cmd('backup container show -n {container_name} -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check('properties.friendlyName', '{fname}'), + self.check('properties.healthStatus', 'Healthy'), + self.check('properties.registrationStatus', 'Registered'), + self.check('name', '{container_name}'), + self.check('resourceGroup', '{rg}') + ]).get_output_in_json() + + self.assertIn(vault_sql.lower(), container_json['id'].lower()) + self.assertIn(container_sql.lower(), container_json['name'].lower()) + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?properties.friendlyName == '{fname}'])", 1)]) + + self.cmd('backup container re-register -v {vault} -g {rg} --backup-management-type AzureWorkload --workload-type {wt} -y --container-name {name}') + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 1)]) + + self.cmd('backup container unregister -v {vault} -g {rg} -c {name} -y') + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 0)]) + + @record_only() + def test_backup_wl_hana_container(self, container_name1=container_hana, container_name2=container_friendly_hana, + resource_group=rg_hana, vault_name=vault_hana, workload_type='SAPHANA', + subscription=sub_hana, id=id_hana): + + self.kwargs.update({ + 'vault': vault_hana, + 'name': container_hana, + 'fname': container_friendly_hana, + 'rg': rg_hana, + 'wt': 'SAPHANA', + 'sub': sub_hana, + 'id': id_hana + }) + + self.cmd('backup container register -v {vault} -g {rg} --backup-management-type AzureWorkload --workload-type {wt} --resource-id {id}') + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 1)]) + + container_json = self.cmd('backup container show -n {name} -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check('properties.friendlyName', '{fname}'), + self.check('properties.healthStatus', 'Healthy'), + self.check('properties.registrationStatus', 'Registered'), + self.check('resourceGroup', '{rg}') + ]).get_output_in_json() + + self.kwargs['container_name'] = container_json['name'] + + self.cmd('backup container show -n {container_name} -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check('properties.friendlyName', '{fname}'), + self.check('properties.healthStatus', 'Healthy'), + self.check('properties.registrationStatus', 'Registered'), + self.check('name', '{container_name}'), + self.check('resourceGroup', '{rg}') + ]).get_output_in_json() + + self.assertIn(vault_hana.lower(), container_json['id'].lower()) + self.assertIn(container_hana.lower(), container_json['name'].lower()) + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?properties.friendlyName == '{fname}'])", 1)]) + + self.cmd('backup container re-register -v {vault} -g {rg} --backup-management-type AzureWorkload --workload-type {wt} -y --container-name {name}') + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 1)]) + + self.cmd('backup container unregister -v {vault} -g {rg} -c {name} -y') + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 0)]) + + @record_only() + def test_backup_wl_sql_policy(self): + + self.kwargs.update({ + 'vault': vault_sql, + 'name': container_sql, + 'fname': container_friendly_sql, + 'policy': 'HourlyLogBackup', + 'wt': 'MSSQL', + 'sub': sub_sql, + 'default': 'HourlyLogBackup', + 'rg': rg_sql, + 'item': item1_sql, + 'id': id_sql, + 'item_id': item_id_sql, + 'pit': 'SQLDataBase', + 'policy_new': self.create_random_name('clitest-policy', 24) + }) + + self.kwargs['policy1_json'] = self.cmd('backup policy show -g {rg} -v {vault} -n {policy}', checks=[ + self.check('name', '{policy}'), + self.check('resourceGroup', '{rg}') + ]).get_output_in_json() + + self.kwargs['policy_json'] = json.dumps(self.kwargs['policy1_json'], separators=(',', ':')).replace('\'', '\\\'').replace('"', '\\"') + + self.cmd("backup policy create -g {rg} -v {vault} --policy {policy_json} --backup-management-type AzureWorkload --workload-type {wt} --name {policy_new}", checks=[ + self.check('name', '{policy_new}'), + self.check('resourceGroup', '{rg}') + ]) + + self.cmd('backup policy list -g {rg} -v {vault}', checks=[ + self.check("length([?name == '{default}'])", 1), + self.check("length([?name == '{policy}'])", 1), + self.check("length([?name == '{policy_new}'])", 1) + ]) + + self.kwargs['policy1_json']['properties']['settings']['isCompression'] = 'true' + self.kwargs['policy1_json']['properties']['settings']['issqlcompression'] = 'true' + self.kwargs['policy1_json'] = json.dumps(self.kwargs['policy1_json'], separators=(',', ':')).replace('\'', '\\\'').replace('"', '\\"') + + self.cmd("backup policy set -g {rg} -v {vault} --policy {policy1_json} -n {policy_new}", checks=[ + self.check('name', '{policy_new}'), + self.check('resourceGroup', '{rg}') + ]) + + self.cmd('backup policy show -g {rg} -v {vault} -n {policy_new}', checks=[ + self.check('name', '{policy_new}'), + self.check('resourceGroup', '{rg}') + ]) + + self.cmd('backup policy delete -g {rg} -v {vault} -n {policy_new}') + + self.cmd('backup policy list -g {rg} -v {vault}', checks=[ + self.check("length([?name == '{default}'])", 1), + self.check("length([?name == '{policy}'])", 1), + self.check("length([?name == '{policy_new}'])", 0) + ]) + + @record_only() + def test_backup_wl_hana_policy(self): + + self.kwargs.update({ + 'vault': vault_hana, + 'name': container_hana, + 'fname': container_friendly_hana, + 'policy': 'DemoBackup', + 'wt': 'SAPHANA', + 'sub': sub_hana, + 'default': 'DemoBackup', + 'rg': rg_hana, + 'item': item1_hana, + 'id': id_hana, + 'item_id': item_id_hana, + 'pit': 'HANADataBase', + 'policy_new': self.create_random_name('clitest-policy', 24) + }) + + self.kwargs['policy1_json'] = self.cmd('backup policy show -g {rg} -v {vault} -n {policy}', checks=[ + self.check('name', '{policy}'), + self.check('resourceGroup', '{rg}') + ]).get_output_in_json() + + self.kwargs['policy_json'] = json.dumps(self.kwargs['policy1_json'], separators=(',', ':')).replace('\'', '\\\'').replace('"', '\\"') + + self.cmd("backup policy create -g {rg} -v {vault} --policy {policy_json} --backup-management-type AzureWorkload --workload-type {wt} --name {policy_new}", checks=[ + self.check('name', '{policy_new}'), + self.check('resourceGroup', '{rg}') + ]) + + self.cmd('backup policy list -g {rg} -v {vault}', checks=[ + self.check("length([?name == '{default}'])", 1), + self.check("length([?name == '{policy}'])", 1), + self.check("length([?name == '{policy_new}'])", 1) + ]) + + self.kwargs['policy1_json']['properties']['settings']['isCompression'] = 'true' + self.kwargs['policy1_json']['properties']['settings']['issqlcompression'] = 'true' + self.kwargs['policy1_json'] = json.dumps(self.kwargs['policy1_json'], separators=(',', ':')).replace('\'', '\\\'').replace('"', '\\"') + + self.cmd('backup policy show -g {rg} -v {vault} -n {policy_new}', checks=[ + self.check('name', '{policy_new}'), + self.check('resourceGroup', '{rg}') + ]) + + self.cmd('backup policy delete -g {rg} -v {vault} -n {policy_new}') + + self.cmd('backup policy list -g {rg} -v {vault}', checks=[ + self.check("length([?name == '{default}'])", 1), + self.check("length([?name == '{policy}'])", 1), + self.check("length([?name == '{policy_new}'])", 0) + ]) + + @record_only() + def test_backup_wl_sql_item(self): + + self.kwargs.update({ + 'vault': "sarath-vault", + 'name': "VMAppContainer;Compute;sarath-rg;sarathvm", + 'fname': "sarathvm", + 'policy': 'HourlyLogBackup', + 'wt': 'MSSQL', + 'sub': sub_sql, + 'default': 'HourlyLogBackup', + 'rg': "sarath-rg", + 'item': "sqldatabase;mssqlserver;msdb", + 'fitem': "msdb", + 'id': id_sql, + 'item_id': item_id_sql, + 'pit': 'SQLDataBase' + }) + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 1)]) + + self.cmd('backup protection enable-for-azurewl -v {vault} -g {rg} -p {policy} --protectable-item-type {pit} --protectable-item-name {item} --server-name {fname} --workload-type {wt}') + + self.kwargs['container1'] = self.cmd('backup container show -n {name} -v {vault} -g {rg} --backup-management-type AzureWorkload --query name').get_output_in_json() + + item1_json = self.cmd('backup item show -g {rg} -v {vault} -c {name} -n {item} --backup-management-type AzureWorkload --workload-type SAPHanaDatabase', checks=[ + self.check('properties.friendlyName', '{fitem}'), + self.check('properties.protectedItemHealthStatus', 'IRPending'), + self.check('properties.protectionState', 'IRPending'), + self.check('properties.protectionStatus', 'Healthy'), + self.check('resourceGroup', '{rg}') + ]).get_output_in_json() + + self.assertIn("sarath-vault", item1_json['id'].lower()) + self.assertIn("sarathvm", item1_json['properties']['containerName'].lower()) + self.assertIn("sarathvm", item1_json['properties']['sourceResourceId'].lower()) + self.assertIn(self.kwargs['default'].lower(), item1_json['properties']['policyId'].lower()) + + self.kwargs['container1_fullname'] = self.cmd('backup container show -n {name} -v {vault} -g {rg} --backup-management-type AzureWorkload --query name').get_output_in_json() + + self.cmd('backup item show -g {rg} -v {vault} -c {container1_fullname} -n {item} --backup-management-type AzureWorkload --workload-type {wt}', checks=[ + self.check('properties.friendlyName', '{fitem}'), + self.check('properties.protectedItemHealthStatus', 'IRPending'), + self.check('properties.protectionState', 'IRPending'), + self.check('properties.protectionStatus', 'Healthy'), + self.check('resourceGroup', '{rg}') + ]) + + self.kwargs['item1_fullname'] = item1_json['name'] + + self.cmd('backup item show -g {rg} -v {vault} -c {container1_fullname} -n {item1_fullname} --backup-management-type AzureWorkload --workload-type SAPHanaDatabase', checks=[ + self.check('properties.friendlyName', '{fitem}'), + self.check('properties.protectedItemHealthStatus', 'IRPending'), + self.check('properties.protectionState', 'IRPending'), + self.check('properties.protectionStatus', 'Healthy'), + self.check('resourceGroup', '{rg}') + ]) + + self.cmd('backup item list -g {rg} -v {vault} -c {container1} --backup-management-type AzureWorkload --workload-type SQLDataBase', checks=[ + self.check("length(@)", 3), + self.check("length([?properties.friendlyName == '{fitem}'])", 1) + ]) + + self.cmd('backup item list -g {rg} -v {vault} -c {container1_fullname} --backup-management-type AzureWorkload --workload-type SQLDataBase', checks=[ + self.check("length(@)", 3), + self.check("length([?properties.friendlyName == '{fitem}'])", 1) + ]) + + self.cmd('backup item list -g {rg} -v {vault} --backup-management-type AzureWorkload --workload-type SQLDataBase', checks=[ + self.check("length(@)", 3), + self.check("length([?properties.friendlyName == '{fitem}'])", 1) + ]) + + self.cmd('backup item set-policy -g {rg} -v {vault} -c {container1} -n {item1_fullname} -p {policy} --backup-management-type AzureWorkload --workload-type SQLDataBase', checks=[ + self.check("properties.entityFriendlyName", '{fitem}'), + self.check("properties.operation", "ConfigureBackup"), + self.check("properties.status", "Completed"), + self.check("resourceGroup", '{rg}') + ]) + + item1_json = self.cmd('backup item show -g {rg} -v {vault} -c {container1} -n {item} --backup-management-type AzureWorkload --workload-type SQLDataBase').get_output_in_json() + self.assertIn("HourlyLogBackup".lower(), item1_json['properties']['policyId'].lower()) + + self.cmd('backup protection disable -v {vault} -g {rg} -c {container1} --backup-management-type AzureWorkload --workload-type {wt} -i {item} -y --delete-backup-data true') + + @record_only() + def test_backup_wl_hana_item(self): + + self.kwargs.update({ + 'vault': vault_hana, + 'name': container_hana, + 'fname': container_friendly_hana, + 'policy': 'HourlyLogBackup', + 'wt': 'SAPHANA', + 'sub': sub_hana, + 'default': 'HourlyLogBackup', + 'rg': "idcdemo", + 'item': "saphanadatabase;h22;h22_restored_sarath", + 'fitem': "h22_restored_sarath", + 'id': id_hana, + 'item_id': item_id_hana_2, + 'pit': 'SAPHanaDatabase' + }) + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 1)]) + + self.cmd('backup protection enable-for-azurewl -v {vault} -g {rg} -p {policy} --protectable-item-type {pit} --protectable-item-name {item} --server-name {fname} --workload-type {wt}') + + self.kwargs['container1'] = self.cmd('backup container show -n {name} -v {vault} -g {rg} --backup-management-type AzureWorkload --query name').get_output_in_json() + + item1_json = self.cmd('backup item show -g {rg} -v {vault} -c {name} -n {item} --backup-management-type AzureWorkload --workload-type SAPHanaDatabase', checks=[ + self.check('properties.friendlyName', '{fitem}'), + self.check('properties.protectedItemHealthStatus', 'IRPending'), + self.check('properties.protectionState', 'IRPending'), + self.check('properties.protectionStatus', 'Healthy'), + self.check('resourceGroup', '{rg}') + ]).get_output_in_json() + + self.assertIn(vault_hana.lower(), item1_json['id'].lower()) + self.assertIn(container_friendly_hana.lower(), item1_json['properties']['containerName'].lower()) + self.assertIn(container_friendly_hana.lower(), item1_json['properties']['sourceResourceId'].lower()) + self.assertIn(self.kwargs['default'].lower(), item1_json['properties']['policyId'].lower()) + + self.kwargs['container1_fullname'] = self.cmd('backup container show -n {name} -v {vault} -g {rg} --backup-management-type AzureWorkload --query name').get_output_in_json() + + self.cmd('backup item show -g {rg} -v {vault} -c {container1_fullname} -n {item} --backup-management-type AzureWorkload --workload-type {wt}', checks=[ + self.check('properties.friendlyName', '{fitem}'), + self.check('properties.protectedItemHealthStatus', 'IRPending'), + self.check('properties.protectionState', 'IRPending'), + self.check('properties.protectionStatus', 'Healthy'), + self.check('resourceGroup', '{rg}') + ]) + + self.kwargs['item1_fullname'] = item1_json['name'] + + self.cmd('backup item show -g {rg} -v {vault} -c {container1_fullname} -n {item1_fullname} --backup-management-type AzureWorkload --workload-type SAPHanaDatabase', checks=[ + self.check('properties.friendlyName', '{fitem}'), + self.check('properties.protectedItemHealthStatus', 'IRPending'), + self.check('properties.protectionState', 'IRPending'), + self.check('properties.protectionStatus', 'Healthy'), + self.check('resourceGroup', '{rg}') + ]) + + self.cmd('backup item list -g {rg} -v {vault} -c {container1} --backup-management-type AzureWorkload --workload-type SAPHanaDatabase', checks=[ + self.check("length(@)", 6), + self.check("length([?properties.friendlyName == '{fitem}'])", 1) + ]) + + self.cmd('backup item list -g {rg} -v {vault} -c {container1_fullname} --backup-management-type AzureWorkload --workload-type SAPHanaDatabase', checks=[ + self.check("length(@)", 6), + self.check("length([?properties.friendlyName == '{fitem}'])", 1) + ]) + + self.cmd('backup item list -g {rg} -v {vault} --backup-management-type AzureWorkload --workload-type SAPHanaDatabase', checks=[ + self.check("length(@)", 8), + self.check("length([?properties.friendlyName == '{fitem}'])", 1) + ]) + + self.cmd('backup item set-policy -g {rg} -v {vault} -c {container1} -n {item1_fullname} -p {policy} --backup-management-type AzureWorkload --workload-type SAPHanaDatabase', checks=[ + self.check("properties.entityFriendlyName", '{fitem}'), + self.check("properties.operation", "ConfigureBackup"), + self.check("properties.status", "Completed"), + self.check("resourceGroup", '{rg}') + ]) + + item1_json = self.cmd('backup item show -g {rg} -v {vault} -c {container1} -n {item} --backup-management-type AzureWorkload --workload-type SAPHanaDatabase').get_output_in_json() + self.assertIn("HourlyLogBackup".lower(), item1_json['properties']['policyId'].lower()) + + self.cmd('backup protection disable -v {vault} -g {rg} -c {container1} --backup-management-type AzureWorkload --workload-type {wt} -i {item} -y --delete-backup-data true') + + @record_only() + def test_backup_wl_sql_protectable_item(self): + + self.kwargs.update({ + 'vault': vault_sql, + 'name': container_sql, + 'fname': container_friendly_sql, + 'policy': 'HourlyLogBackup', + 'wt': 'MSSQL', + 'sub': sub_sql, + 'default': 'HourlyLogBackup', + 'rg': rg_sql, + 'item': item1_sql, + 'id': id_sql, + 'item_id': item_id_sql, + 'pit': 'SQLDataBase', + 'protectable_item_name': 'newdb', + 'pit_hana': 'SAPHanaDatabase' + }) + + self.cmd('backup container register -v {vault} -g {rg} --backup-management-type AzureWorkload --workload-type {wt} --resource-id {id}') + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 1)]) + + self.kwargs['container1'] = self.cmd('backup container show -n {name} -v {vault} -g {rg} --query properties.friendlyName --backup-management-type AzureWorkload').get_output_in_json() + + self.cmd('backup protectable-item list -g {rg} --vault-name {vault} --workload-type {wt}', checks=[ + self.check("length([?properties.friendlyName == '{protectable_item_name}'])", 0) + ]) + + self.cmd('backup protectable-item initialize -g {rg} --vault-name {vault} --workload-type {wt} --container-name {name}') + + self.cmd('backup protectable-item list -g {rg} --vault-name {vault} --workload-type {wt}', checks=[ + self.check("length([?properties.friendlyName == '{protectable_item_name}'])", 1) + ]) + + self.cmd('backup protectable-item show -g {rg} --vault-name {vault} --name {protectable_item_name} --workload-type {wt} --protectable-item-type {pit} --server-name {fname}', checks=[ + self.check('properties.friendlyName', '{protectable_item_name}'), + self.check('properties.protectableItemType', '{pit}'), + self.check('properties.serverName', '{fname}'), + self.check('resourceGroup', '{rg}') + ]) + + self.cmd('backup container unregister -v {vault} -g {rg} -c {name} -y') + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 0)]) + + @record_only() + def test_backup_wl_hana_protectable_item(self): + + self.kwargs.update({ + 'vault': vault_hana, + 'name': container_hana, + 'fname': container_friendly_hana, + 'policy': 'HourlyLogBackup', + 'wt': 'SAPHANA', + 'sub': sub_hana, + 'default': 'HourlyLogBackup', + 'rg': rg_hana, + 'item': item1_hana, + 'id': id_hana, + 'item_id': item_id_hana, + 'pit': 'SAPHanaDatabase', + 'protectable_item_name': 'NEWDB', + 'pit_hana': 'SAPHanaDatabase' + }) + + self.cmd('backup container register -v {vault} -g {rg} --backup-management-type AzureWorkload --workload-type {wt} --resource-id {id}') + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 1)]) + + self.kwargs['container1'] = self.cmd('backup container show -n {name} -v {vault} -g {rg} --query properties.friendlyName --backup-management-type AzureWorkload').get_output_in_json() + + self.cmd('backup protectable-item list -g {rg} --vault-name {vault} --workload-type {wt}', checks=[ + self.check("length([?properties.friendlyName == '{protectable_item_name}'])", 0) + ]) + + self.cmd('backup protectable-item initialize -g {rg} --vault-name {vault} --workload-type {wt} --container-name {name}') + + self.cmd('backup protectable-item list -g {rg} --vault-name {vault} --workload-type {wt}', checks=[ + self.check("length([?properties.friendlyName == '{protectable_item_name}'])", 1) + ]) + + self.cmd('backup protectable-item show -g {rg} --vault-name {vault} --name {protectable_item_name} --workload-type {wt} --protectable-item-type {pit} --server-name {fname}', checks=[ + self.check('properties.friendlyName', '{protectable_item_name}'), + self.check('properties.protectableItemType', '{pit_hana}'), + self.check('properties.serverName', '{fname}'), + self.check('resourceGroup', '{rg}') + ]) + + self.cmd('backup container unregister -v {vault} -g {rg} -c {name} -y') + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 0)]) + + @record_only() + def test_backup_wl_sql_rp(self): + resource_group = rg_sql.lower() + self.kwargs.update({ + 'vault': vault_sql, + 'name': container_sql, + 'rg': resource_group, + 'fname': container_friendly_sql, + 'policy': 'HourlyLogBackup', + 'wt': 'MSSQL', + 'sub': sub_sql, + 'item': item1_sql, + 'pit': 'SQLDatabase', + 'item_id': item_id_sql, + 'id': id_sql + }) + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 1)]) + + self.cmd('backup recoverypoint list -g {rg} -v {vault} -c {name} -i {item} --workload-type {wt} --query [].name', checks=[ + self.check("length(@)", 1) + ]) + + rp1_json = self.cmd('backup recoverypoint show-log-chain -g {rg} -v {vault} -c {name} -i {item} --workload-type {wt}').get_output_in_json() + self.assertIn(vault_sql.lower(), rp1_json[0]['id'].lower()) + self.assertIn(container_sql.lower(), rp1_json[0]['id'].lower()) + + rp2_json = self.cmd('backup recoverypoint show-log-chain -g {rg} -v {vault} -c {name} -i {item} --workload-type {wt}').get_output_in_json() + self.assertIn(vault_sql.lower(), rp2_json[0]['id'].lower()) + self.assertIn(container_sql.lower(), rp2_json[0]['id'].lower()) + + @record_only() + def test_backup_wl_hana_rp(self): + + resource_group = rg_hana.lower() + self.kwargs.update({ + 'vault': vault_hana, + 'name': container_hana, + 'rg': resource_group, + 'fname': container_friendly_hana, + 'policy': 'HourlyLogBackup', + 'wt': 'SAPHANA', + 'sub': sub_hana, + 'item': 'saphanadatabase;h22;h22_restored_sarath', + 'pit': 'HANADatabase', + 'item_id': item_id_hana, + 'id': id_hana + }) + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 1)]) + + self.cmd('backup recoverypoint list -g {rg} -v {vault} -c {name} -i {item} --workload-type {wt} --query [].name', checks=[ + self.check("length(@)", 1) + ]) + + rp1_json = self.cmd('backup recoverypoint show-log-chain -g {rg} -v {vault} -c {name} -i {item} --workload-type {wt}').get_output_in_json() + self.assertIn(vault_hana.lower(), rp1_json[0]['id'].lower()) + self.assertIn(container_hana.lower(), rp1_json[0]['id'].lower()) + + rp2_json = self.cmd('backup recoverypoint show-log-chain -g {rg} -v {vault} -c {name} -i {item} --workload-type {wt}').get_output_in_json() + self.assertIn(vault_hana.lower(), rp2_json[0]['id'].lower()) + self.assertIn(container_hana.lower(), rp2_json[0]['id'].lower()) + + @record_only() + def test_backup_wl_sql_protection(self): + + self.kwargs.update({ + 'vault': "sarath-vault", + 'name': "VMAppContainer;Compute;sarath-rg;sarathvm", + 'fname': "sarathvm", + 'policy': 'HourlyLogBackup', + 'wt': 'MSSQL', + 'sub': sub_sql, + 'default': 'HourlyLogBackup', + 'rg': "sarath-rg", + 'item': "sqldatabase;mssqlserver;msdb", + 'fitem': "msdb", + 'id': id_sql, + 'item_id': item_id_sql, + 'pit': "SQLDataBase", + 'entityFriendlyName': 'MSSQLSERVER/msdb [sarathvm]' + }) + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 1)]) + + self.cmd('backup protection enable-for-azurewl -v {vault} -g {rg} -p {policy} --protectable-item-type {pit} --protectable-item-name {item} --server-name {fname} --workload-type {wt}', checks=[ + self.check("properties.entityFriendlyName", '{fitem}'), + self.check("properties.operation", "ConfigureBackup"), + self.check("properties.status", "Completed"), + self.check("resourceGroup", '{rg}') + ]) + + self.kwargs['container1'] = self.cmd('backup container show -n {name} -v {vault} -g {rg} --backup-management-type AzureWorkload --query name').get_output_in_json() + + self.kwargs['backup_job'] = self.cmd('backup protection backup-now -v {vault} -g {rg} -i {item} -c {name} --backup-type Full --retain-until 1-7-2020 --enable-compression false', checks=[ + self.check("properties.entityFriendlyName", '{entityFriendlyName}'), + self.check("properties.operation", "Backup"), + self.check("properties.status", "InProgress"), + self.check("resourceGroup", '{rg}') + ]).get_output_in_json() + + self.kwargs['job'] = self.kwargs['backup_job']['name'] + + self.cmd('backup job wait -v {vault} -g {rg} -n {job}') + + self.cmd('backup item show -g {rg} -v {vault} -c {container1} -n {item} --backup-management-type AzureWorkload', checks=[ + self.check('properties.friendlyName', '{fitem}'), + self.check('properties.protectedItemHealthStatus', 'Healthy'), + self.check('properties.protectionState', 'Protected'), + self.check('properties.protectionStatus', 'Healthy'), + self.check('resourceGroup', '{rg}') + ]) + + self.cmd('backup protection disable -v {vault} -g {rg} -i {item} -c {name} --backup-management-type AzureWorkload -y', checks=[ + self.check("properties.entityFriendlyName", '{fitem}'), + self.check("properties.operation", "DisableBackup"), + self.check("properties.status", "Completed"), + self.check("resourceGroup", '{rg}') + ]) + + self.cmd('backup item show -g {rg} -v {vault} -c {container1} -n {item} --backup-management-type AzureWorkload', checks=[ + self.check("properties.friendlyName", '{fitem}'), + self.check("properties.protectionState", "ProtectionStopped"), + self.check("resourceGroup", '{rg}') + ]) + + @record_only() + def test_backup_wl_hana_protection(self): + + self.kwargs.update({ + 'vault': vault_hana, + 'name': container_hana, + 'fname': container_friendly_hana, + 'policy': 'HourlyLogBackup', + 'wt': 'SAPHANA', + 'sub': sub_hana, + 'default': 'HourlyLogBackup', + 'rg': "idcdemo", + 'item': "saphanadatabase;h22;h22_restored_sarath", + 'fitem': "h22_restored_sarath", + 'id': id_hana, + 'item_id': item_id_hana, + 'pit': "SAPHanaDatabase", + 'entityFriendlyName': 'H22/H22_RESTORED_SARATH [HANADemoIDC3]' + }) + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 1)]) + + self.cmd('backup protection enable-for-azurewl -v {vault} -g {rg} -p {policy} --protectable-item-type {pit} --protectable-item-name {item} --server-name {fname} --workload-type {wt}', checks=[ + self.check("properties.entityFriendlyName", '{fitem}'), + self.check("properties.operation", "ConfigureBackup"), + self.check("properties.status", "Completed"), + self.check("resourceGroup", '{rg}') + ]) + + self.kwargs['container1'] = self.cmd('backup container show -n {name} -v {vault} -g {rg} --backup-management-type AzureWorkload --query name').get_output_in_json() + + self.kwargs['backup_job'] = self.cmd('backup protection backup-now -v {vault} -g {rg} -i {item} -c {name} --backup-type Full --retain-until 1-7-2020 --enable-compression false', checks=[ + self.check("properties.entityFriendlyName", '{entityFriendlyName}'), + self.check("properties.operation", "Backup"), + self.check("properties.status", "InProgress"), + self.check("resourceGroup", '{rg}') + ]).get_output_in_json() + + self.kwargs['job'] = self.kwargs['backup_job']['name'] + + self.cmd('backup job wait -v {vault} -g {rg} -n {job}') + + self.cmd('backup item show -g {rg} -v {vault} -c {container1} -n {item} --backup-management-type AzureWorkload', checks=[ + self.check('properties.friendlyName', '{fitem}'), + self.check('properties.protectedItemHealthStatus', 'Healthy'), + self.check('properties.protectionState', 'Protected'), + self.check('properties.protectionStatus', 'Healthy'), + self.check('resourceGroup', '{rg}') + ]) + + self.cmd('backup protection disable -v {vault} -g {rg} -i {item} -c {name} --backup-management-type AzureWorkload -y', checks=[ + self.check("properties.entityFriendlyName", '{fitem}'), + self.check("properties.operation", "DisableBackup"), + self.check("properties.status", "Completed"), + self.check("resourceGroup", '{rg}') + ]) + + self.cmd('backup item show -g {rg} -v {vault} -c {container1} -n {item} --backup-management-type AzureWorkload', checks=[ + self.check("properties.friendlyName", '{fitem}'), + self.check("properties.protectionState", "ProtectionStopped"), + self.check("resourceGroup", '{rg}') + ]) + + @record_only() + def test_backup_wl_sql_auto_protection(self): + + self.kwargs.update({ + 'vault': vault_sql, + 'name': container_sql, + 'fname': container_friendly_sql, + 'policy': 'HourlyLogBackup', + 'wt': 'MSSQL', + 'sub': sub_sql, + 'default': 'HourlyLogBackup', + 'rg': rg_sql, + 'item': item_auto_sql, + 'fitem': item_auto_sql.split(';')[-1], + 'id': id_sql, + 'item_id': item_id_sql, + 'pit': 'SQLInstance', + 'entityFriendlyName': backup_entity_friendly_name_sql + }) + + self.cmd('backup container register -v {vault} -g {rg} --backup-management-type AzureWorkload --workload-type {wt} --resource-id {id}') + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 1)]) + + self.cmd('backup protection auto-enable-for-azurewl -v {vault} -g {rg} -p {policy} --protectable-item-name {item} --protectable-item-type {pit} --server-name {fname} --workload-type {wt}') + + self.cmd('backup protection auto-disable-for-azurewl -v {vault} -g {rg} --item-name {item}') + + self.cmd('backup container unregister -v {vault} -g {rg} -c {name} -y') + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 0)]) + + @record_only() + def test_backup_wl_hana_restore(self): + + resource_group = rg_hana.lower() + self.kwargs.update({ + 'vault': vault_hana, + 'name': container_hana, + 'fname': container_friendly_hana, + 'policy': 'HourlyLogBackup', + 'wt': 'SAPHANA', + 'sub': sub_hana, + 'default': 'HourlyLogBackup', + 'rg': resource_group, + 'item': "saphanadatabase;h22;h22_restored_sarath", + 'fitem': "h22_restored_sarath", + 'id': id_hana, + 'item_id': item_id_hana, + 'pit': 'SAPHanaDatabase', + 'entityFriendlyName': 'H22/H22_RESTORED_SARATH [HANADemoIDC3]', + 'tpit': 'HANAInstance', + 'titem': 'H22' + }) + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 1)]) + + self.cmd('backup protection enable-for-azurewl --vault-name {vault} -g {rg} -p {policy} --protectable-item-type {pit} --protectable-item-name {item} --server-name {fname} --workload-type {wt}', checks=[ + self.check("properties.entityFriendlyName", '{fitem}'), + self.check("properties.operation", "ConfigureBackup"), + self.check("properties.status", "Completed"), + self.check("resourceGroup", '{rg}') + ]) + + self.kwargs['container1'] = self.cmd('backup container show -n {name} -v {vault} -g {rg} --backup-management-type AzureWorkload --query name').get_output_in_json() + + self.kwargs['backup_job'] = self.cmd('backup protection backup-now -v {vault} -g {rg} -c {name} -i {item} --backup-type Full --retain-until 1-7-2020 --enable-compression false', checks=[ + self.check("properties.entityFriendlyName", '{entityFriendlyName}'), + self.check("properties.operation", "Backup"), + self.check("properties.status", "InProgress"), + self.check("resourceGroup", '{rg}') + ]).get_output_in_json() + + self.kwargs['job'] = self.kwargs['backup_job']['name'] + + self.cmd('backup job wait -v {vault} -g {rg} -n {job}') + + self.cmd('backup item show -g {rg} -v {vault} -c {container1} -n {item} --backup-management-type AzureWorkload', checks=[ + self.check('properties.friendlyName', '{fitem}'), + self.check('properties.protectedItemHealthStatus', 'Healthy'), + self.check('properties.protectionState', 'Protected'), + self.check('properties.protectionStatus', 'Healthy'), + self.check('resourceGroup', '{rg}') + ]) + + self.kwargs['rp'] = self.cmd('backup recoverypoint list -g {rg} -v {vault} -c {name} -i {item} --workload-type {wt} --query [0]').get_output_in_json() + + self.kwargs['rp'] = self.kwargs['rp']['name'] + + self.kwargs['rc'] = json.dumps(self.cmd('backup recoveryconfig show --vault-name {vault} -g {rg} --restore-mode AlternateWorkloadRestore --rp-name {rp} --item-name {item} --container-name {container1} --target-item-name {titem} --target-server-type {tpit} --target-server-name {fname} --workload-type {wt}').get_output_in_json(), separators=(',', ':')) + with open("recoveryconfig.json", "w") as f: + f.write(self.kwargs['rc']) + + self.kwargs['backup_job'] = self.cmd('backup restore restore-azurewl --vault-name {vault} -g {rg} --recovery-config recoveryconfig.json', checks=[ + self.check("properties.entityFriendlyName", '{entityFriendlyName}'), + self.check("properties.operation", "Restore"), + self.check("properties.status", "InProgress"), + self.check("resourceGroup", '{rg}') + ]).get_output_in_json() + + self.kwargs['job'] = self.kwargs['backup_job']['name'] + + self.cmd('backup job wait -v {vault} -g {rg} -n {job}') + + self.kwargs['rc'] = json.dumps(self.cmd('backup recoveryconfig show --vault-name {vault} -g {rg} --restore-mode OriginalWorkloadRestore --item-name {item} --container-name {container1} --rp-name {rp}').get_output_in_json(), separators=(',', ':')) + with open("recoveryconfig.json", "w") as f: + f.write(self.kwargs['rc']) + + self.kwargs['backup_job'] = self.cmd('backup restore restore-azurewl --vault-name {vault} -g {rg} --recovery-config recoveryconfig.json', checks=[ + self.check("properties.entityFriendlyName", '{entityFriendlyName}'), + self.check("properties.operation", "Restore"), + self.check("properties.status", "InProgress"), + self.check("resourceGroup", '{rg}') + ]).get_output_in_json() + + os.remove("recoveryconfig.json") + + self.kwargs['job'] = self.kwargs['backup_job']['name'] + + self.cmd('backup job wait -v {vault} -g {rg} -n {job}') + + self.cmd('backup protection disable -v {vault} -g {rg} -c {container1} --backup-management-type AzureWorkload --workload-type SAPHanaDatabase -i {item} -y', checks=[ + self.check("properties.entityFriendlyName", '{fitem}'), + self.check("properties.operation", "DisableBackup"), + self.check("properties.status", "Completed"), + self.check("resourceGroup", '{rg}') + ]) + + self.cmd('backup item show -g {rg} -v {vault} -c {container1} -n {item} --backup-management-type AzureWorkload', checks=[ + self.check("properties.friendlyName", '{fitem}'), + self.check("properties.protectionState", "ProtectionStopped"), + self.check("resourceGroup", '{rg}') + ]) + + @record_only() + def test_backup_wl_sql_restore(self): + self.kwargs.update({ + 'vault': "sarath-vault", + 'name': "VMAppContainer;Compute;sarath-rg;sarathvm", + 'fname': "sarathvm", + 'policy': 'HourlyLogBackup', + 'wt': 'MSSQL', + 'sub': sub_sql, + 'default': 'HourlyLogBackup', + 'rg': "sarath-rg", + 'item': "sqldatabase;mssqlserver;msdb", + 'fitem': "msdb", + 'id': id_sql, + 'item_id': item_id_sql, + 'pit': 'SQLDataBase', + 'entityFriendlyName': 'MSSQLSERVER/msdb [sarathvm]', + 'tpit': 'SQLInstance', + 'titem': 'MSSQLSERVER' + }) + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 1)]) + + self.kwargs['container1'] = self.cmd('backup container show -n {name} -v {vault} -g {rg} --backup-management-type AzureWorkload --query name').get_output_in_json() + + self.cmd('backup item show -g {rg} -v {vault} -c {container1} -n {item} --backup-management-type AzureWorkload', checks=[ + self.check('properties.friendlyName', '{fitem}'), + self.check('properties.protectedItemHealthStatus', 'Healthy'), + self.check('properties.protectionState', 'Protected'), + self.check('properties.protectionStatus', 'Healthy'), + self.check('resourceGroup', '{rg}') + ]) + + self.kwargs['rp'] = self.cmd('backup recoverypoint list -g {rg} -v {vault} -c {name} -i {item} --workload-type {wt} --query [0]').get_output_in_json() + + self.kwargs['rp'] = self.kwargs['rp']['name'] + + self.kwargs['rc'] = json.dumps(self.cmd('backup recoveryconfig show --vault-name {vault} -g {rg} --restore-mode AlternateWorkloadRestore --rp-name {rp} --item-name {item} --container-name {container1} --target-item-name {titem} --target-server-type SQLInstance --target-server-name {fname} --workload-type {wt}').get_output_in_json(), separators=(',', ':')) + with open("recoveryconfig.json", "w") as f: + f.write(self.kwargs['rc']) + + self.kwargs['backup_job'] = self.cmd('backup restore restore-azurewl --vault-name {vault} -g {rg} --recovery-config recoveryconfig.json', checks=[ + self.check("properties.entityFriendlyName", '{entityFriendlyName}'), + self.check("properties.operation", "Restore"), + self.check("properties.status", "InProgress"), + self.check("resourceGroup", '{rg}') + ]).get_output_in_json() + + self.kwargs['job'] = self.kwargs['backup_job']['name'] + + self.cmd('backup job wait -v {vault} -g {rg} -n {job}') + + self.kwargs['rc'] = json.dumps(self.cmd('backup recoveryconfig show --vault-name {vault} -g {rg} --restore-mode OriginalWorkloadRestore --item-name {item} --container-name {container1} --rp-name {rp}').get_output_in_json(), separators=(',', ':')) + with open("recoveryconfig.json", "w") as f: + f.write(self.kwargs['rc']) + + self.kwargs['backup_job'] = self.cmd('backup restore restore-azurewl --vault-name {vault} -g {rg} --recovery-config recoveryconfig.json', checks=[ + self.check("properties.entityFriendlyName", '{entityFriendlyName}'), + self.check("properties.operation", "Restore"), + self.check("properties.status", "InProgress"), + self.check("resourceGroup", '{rg}') + ]).get_output_in_json() + + os.remove("recoveryconfig.json") + + self.kwargs['job'] = self.kwargs['backup_job']['name'] + + self.cmd('backup job wait -v {vault} -g {rg} -n {job}') + + self.cmd('backup protection disable -v {vault} -g {rg} -c {name} --backup-management-type AzureWorkload --workload-type {wt} -i {item} -y --delete-backup-data true')