diff --git a/azure-cli2017.pyproj b/azure-cli2017.pyproj index ec35144fc7f..014e3a99bc4 100644 --- a/azure-cli2017.pyproj +++ b/azure-cli2017.pyproj @@ -293,6 +293,8 @@ + + @@ -301,6 +303,10 @@ + + + + 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 3f032b36b7f..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 @@ -55,6 +55,10 @@ def backup_storage_configs_cf(cli_ctx, *_): # 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 @@ -63,6 +67,14 @@ def protection_containers_cf(cli_ctx, *_): return _backup_client_factory(cli_ctx).protection_containers +def protectable_containers_cf(cli_ctx, *_): + return _backup_client_factory(cli_ctx).protectable_containers + + +def protection_container_operation_results_cf(cli_ctx, *_): + return _backup_client_factory(cli_ctx).protection_container_operation_results + + def protection_container_refresh_operation_results_cf(cli_ctx, *_): return _backup_client_factory(cli_ctx).protection_container_refresh_operation_results @@ -100,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 41f69c5dd84..2f235f6f515 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/_format.py +++ b/src/azure-cli/azure/cli/command_modules/backup/_format.py @@ -7,15 +7,29 @@ def transform_container(result): - return OrderedDict([('Name', result['properties']['friendlyName']), + return OrderedDict([('Name', result['name']), ('Resource Group', result['resourceGroup']), ('Type', result['properties']['backupManagementType']), ('Registration Status', result['properties']['registrationStatus'])]) +def transform_wl_container(result): + columns = [] + columns.append(('Name', result['name'])) + columns.append(('Status', result['properties']['registrationStatus'])) + columns.append(('Container Type', result['properties']['containerType'])) + + workloads = [workload['type'] for workload in result['properties']['extendedInfo']['inquiryInfo']['inquiryDetails']] + + columns.append(('Workloads Present', ', '.join(workloads))) + columns.append(('Health Status', result['properties']['healthStatus'])) + + return OrderedDict(columns) + + def transform_item(result): columns = [] - columns.append(('Name', result['properties']['friendlyName'])) + columns.append(('Name', result['name'])) columns.append(('Resource Group', result['resourceGroup'])) columns.append(('Type', result['properties']['workloadType'])) columns.append(('Last Backup Status', result['properties']['lastBackupStatus'])) @@ -32,6 +46,28 @@ def transform_item(result): return OrderedDict(columns) +def transform_wl_item(result): + columns = [] + columns.append(('Name', result['name'])) + columns.append(('WorkloadType', result['properties']['workloadType'])) + columns.append(('ContainerUniqueName', result['properties']['containerName'])) + columns.append(('Protection Status', result['properties']['protectionStatus'])) + columns.append(('Latest Recovery Point', result['properties']['lastRecoveryPoint'])) + + return OrderedDict(columns) + + +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_job(result): columns = [] columns.append(('Name', result['name'])) @@ -48,6 +84,39 @@ def transform_job(result): return OrderedDict(columns) +def transform_wl_policy(result): + return OrderedDict([('Name', result['name']), + ('Resource Group', result['resourceGroup']), + ('BackupManagementType', result['properties']['backupManagementType']), + ('WorkloadType', result['properties']['workLoadType'])]) + + +def transform_workload_policy_show(result): + columns = [] + columns.append(('Name', result['name'])) + columns.append(('WorkloadType', result['properties']['workLoadType'])) + + sub_protection_policy = result['properties']['subProtectionPolicy'] + differential, log = [False] * 2 + + for policy in sub_protection_policy: + if policy['policyType'] == 'Full': + backup_time = policy['schedulePolicy']['scheduleRunTimes'][0] + frequency = policy['schedulePolicy']['scheduleRunFrequency'] + if policy['policyType'] == 'Log': + log = True + if policy['policyType'] == 'Differential': + differential = True + + columns.append(('BackupTime', backup_time)) + columns.append(('Frequency', frequency)) + columns.append(('IsDifferentialBackupEnabled', 'Yes' if differential else 'No')) + if result['properties']['workLoadType'] == 'SQLDataBase': + columns.append(('IsLogBackupEnabled', 'Yes' if log else 'No')) + + return OrderedDict(columns) + + def transform_policy(result): return OrderedDict([('Name', result['name']), ('Resource Group', result['resourceGroup']), @@ -60,6 +129,48 @@ def transform_recovery_point(result): ('Consistency', result['properties']['recoveryPointType'])]) +def transform_wl_recovery_point(result): + return OrderedDict([('Name', result['name']), + ('Time', result['properties']['recoveryPointTimeInUtc']), + ('Consistency', result['properties']['type']), + ('BackupManagementType', "AzureWorkload"), + ('Item Name', result['id'].split('/')[14]), + ('RecoveryPointType', result['properties']['objectType'])]) + + +def transform_enable_protection_for_azure_wl(result): + return OrderedDict([('Workload Name', result['properties']['entityFriendlyName']), + ('Operation', result['properties']['operation']), + ('Status', result['properties']['status']), + ('Start Time', result['properties']['startTime']), + ('End Time', result['properties']['endTime']), + ('Job Id', result['properties']['activityId'])]) + + +def transform_containers_list(container_list): + if container_list != [] and container_list[0]['properties']['backupManagementType'] == 'AzureWorkload': + return transform_wl_container_list(container_list) + return transform_container_list(container_list) + + +def transform_policies_list(policy_list): + if policy_list != [] and policy_list[0]['properties']['backupManagementType'] == 'AzureWorkload': + return transform_wl_policy_list(policy_list) + return transform_policy_list(policy_list) + + +def transform_items_list(item_list): + if item_list != [] and item_list[0]['properties']['backupManagementType'] == 'AzureWorkload': + return transform_wl_item_list(item_list) + return transform_item_list(item_list) + + +def transform_recovery_points_list(recovery_point_list): + if recovery_point_list != [] and recovery_point_list[0]['id'].split('/')[12].split(';')[0] == 'VMAppContainer': + return transform_wl_recovery_point_list(recovery_point_list) + return transform_recovery_point_list(recovery_point_list) + + def transform_container_list(container_list): return [transform_container(c) for c in container_list] @@ -68,6 +179,10 @@ def transform_item_list(item_list): return [transform_item(i) for i in item_list] +def transform_protectable_item_list(protectable_item_list): + return [transform_protectable_item(i) for i in protectable_item_list] + + def transform_job_list(job_list): return [transform_job(j) for j in job_list] @@ -78,3 +193,32 @@ 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_wl_recovery_point_list(recovery_point_list): + return [transform_wl_recovery_point(rp) for rp in recovery_point_list] + + +def transform_wl_container_list(container_list): + return [transform_wl_container(c) for c in container_list] + + +def transform_wl_item_list(item_list): + return [transform_wl_item(i) for i in item_list] + + +def transform_wl_policy_list(policy_list): + return [transform_wl_policy(p) for p in policy_list] + + +def transform_wl_policy_set(policy): + if policy['properties']['backupManagementType'] == 'AzureWorkload': + return [transform_workload_policy_show(p) for p in [policy]] + return [] + + +def transform_wl_policy_show(policy_list): + if isinstance(policy_list, list) and policy_list != []: + if policy_list[0]['properties']['backupManagementType'] == 'AzureWorkload': + return [transform_workload_policy_show(p) for p in policy_list] + return [] 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 2481254626e..123a73319b5 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/_params.py +++ b/src/azure-cli/azure/cli/command_modules/backup/_params.py @@ -9,13 +9,12 @@ from knack.arguments import CLIArgumentType -import azure.cli.core.commands.arm # pylint: disable=unused-import +# pylint: disable=unused-import from azure.cli.core.commands.parameters import \ (get_resource_name_completion_list, file_type, get_three_state_flag, get_enum_type) from azure.cli.core.commands.validators import get_default_location_from_resource_group -from azure.cli.command_modules.backup._validators import \ - (datetime_type) +from azure.cli.command_modules.backup._validators import datetime_type # ARGUMENT DEFINITIONS @@ -29,6 +28,8 @@ policy_name_type = CLIArgumentType(help='Name of the backup policy.', options_list=['--policy-name', '-p']) job_name_type = CLIArgumentType(help='Name of the job.', options_list=['--name', '-n']) rp_name_type = CLIArgumentType(help='Name of the recovery point.', options_list=['--rp-name', '-r']) +backup_management_type = CLIArgumentType(help='Name of the backup management type.', arg_type=get_enum_type(['AzureWorkload', 'AzureIaasVM', 'AzureStorage']), options_list=['--backup-management-type']) +wl_type = CLIArgumentType(help='Name of the workload type.', arg_type=get_enum_type(['MSSQL', 'SAPHANA', 'SAPASE', 'VM']), options_list=['--workload-type']) # pylint: disable=too-many-statements @@ -49,6 +50,7 @@ def load_arguments(self, _): # Container with self.argument_context('backup container') as c: c.argument('vault_name', vault_name_type, id_part='name') + c.argument('container_type', backup_management_type) c.ignore('status') with self.argument_context('backup container show') as c: @@ -57,50 +59,91 @@ def load_arguments(self, _): with self.argument_context('backup container list') as c: c.argument('vault_name', vault_name_type, id_part=None) + with self.argument_context('backup container register') as c: + c.argument('workload_type', wl_type) + c.argument('resource_id', options_list=['--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.') + + with self.argument_context('backup container re-register') as c: + c.argument('workload_type', wl_type) + c.argument('container_name', container_name_type, options_list=['--name', '-n'], help='Name of the container. You can use the backup container list command to get the name of a container.') + + with self.argument_context('backup container unregister') as c: + c.argument('container_name', container_name_type, options_list=['--name', '-n'], help='Name of the container. You can use the backup container list command to get the name of a container.') + # Item with self.argument_context('backup item') as c: c.argument('vault_name', vault_name_type, id_part='name') c.argument('container_name', container_name_type) + c.argument('container_type', backup_management_type) + c.argument('workload_type', wl_type) with self.argument_context('backup item show') as c: c.argument('name', item_name_type, options_list=['--name', '-n'], help='Name of the backed up item. You can use the backup item list command to get the name of a backed up item.') # TODO: Need to use item.id once https://github.com/Azure/msrestazure-for-python/issues/80 is fixed. with self.argument_context('backup item set-policy') as c: - c.argument('item_name', item_name_type, options_list=['--name', '-n'], id_part='name', help='Name of the backed up item. You can use the backup item list command to get the name of a backed up item.') + c.argument('item_name', item_name_type, options_list=['--name', '-n'], help='Name of the backed up item. You can use the backup item list command to get the name of a backed up item.') c.argument('policy_name', policy_name_type, help='Name of the Backup policy. You can use the backup policy list command to get the name of a backup policy.') with self.argument_context('backup item list') as c: c.argument('vault_name', vault_name_type, id_part=None) + # Protectable Item + with self.argument_context('backup protectable-item') as c: + c.argument('vault_name', vault_name_type, id_part='name') + c.argument('workload_type', wl_type) + + with self.argument_context('backup protectable-item show') as c: + c.argument('name', item_name_type, options_list=['--name', '-n'], help='Name of the backed up protectable item. You can use the backup protectable-item list command to get the name of a backed up protectable item.') + c.argument('server_name', options_list=['--server-name', '-s']) + c.argument('protectable_item_type', arg_type=get_enum_type(['SQLAG', 'SQLInstance', 'SQLDatabase', 'HANAInstance', 'HANADatabase']), options_list=['--protectable-item-type']) + + with self.argument_context('backup protectable-item') as c: + c.argument('container_name', container_name_type) + + with self.argument_context('backup protectable-item list') as c: + c.argument('container_name', container_name_type, id_part=None) + # Policy with self.argument_context('backup policy') as c: c.argument('vault_name', vault_name_type, id_part='name') - for command in ['show', 'delete', 'list-associated-items']: + for command in ['show', 'delete', 'list-associated-items', 'set', 'new']: with self.argument_context('backup policy ' + command) as c: c.argument('name', policy_name_type, options_list=['--name', '-n'], help='Name of the backup policy. You can use the backup policy list command to get the name of a policy.') with self.argument_context('backup policy set') 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()) + with self.argument_context('backup policy new') 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('workload_type', wl_type) + c.argument('container_type', backup_management_type) + with self.argument_context('backup policy list') as c: + c.argument('workload_type', wl_type) + c.argument('container_type', backup_management_type) c.argument('vault_name', vault_name_type, id_part=None) + with self.argument_context('backup policy show') as c: + c.argument('container_type', backup_management_type) + # Recovery Point # TODO: Need to use item.id once https://github.com/Azure/msrestazure-for-python/issues/80 is fixed. with self.argument_context('backup recoverypoint') as c: c.argument('vault_name', vault_name_type, id_part='name') 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('workload_type', wl_type) + + with self.argument_context('backup recoverypoint list') as c: + c.argument('container_type', backup_management_type, id_part=None) with self.argument_context('backup recoverypoint show') as c: c.argument('name', rp_name_type, options_list=['--name', '-n'], help='Name of the recovery point. You can use the backup recovery point list command to get the name of a backed up item.') + c.argument('container_type', backup_management_type) # Protection with self.argument_context('backup protection') as c: @@ -115,7 +158,9 @@ def load_arguments(self, _): c.argument('item_name', item_name_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='The date until which this backed up copy will be available for retrieval, in UTC (d-m-Y).', options_list=['--retain-until']) + c.argument('backup_type', arg_type=get_enum_type(['Full', 'Differential', 'Log', 'CopyOnlyFull']), options_list=['--backup-type']) + c.argument('enable_compression', arg_type=get_three_state_flag(), options_list=['--enable-compression']) 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.') @@ -123,6 +168,16 @@ def load_arguments(self, _): with self.argument_context('backup protection check-vm') as c: c.argument('vm_id', help='ID of the virtual machine to be checked for protection.') + with self.argument_context('backup protection enable-for-azurewl') as c: + c.argument('protectable_item', type=file_type, help='JSON encoded protectable item definition.', completer=FilesCompleter(), options_list=['--protectable-item']) + + with self.argument_context('backup protection auto-enable-for-azurewl') as c: + c.argument('protectable_item', type=file_type, help='JSON encoded protectable item definition.', completer=FilesCompleter(), options_list=['--protectable-item']) + c.argument('policy_name', policy_name_type, help='Name of the Backup policy. You can use the backup policy list command to get the name of a backup policy.') + + with self.argument_context('backup protection disable auto-for-azurewl') as c: + c.argument('item_name', item_name_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: @@ -136,6 +191,9 @@ def load_arguments(self, _): c.argument('restore_to_staging_storage_account', arg_type=get_three_state_flag(), help='Use this flag when you want disks to be restored to the staging storage account using the --storage-account parameter. When not specified, disks will be restored to their original storage accounts. Default: false.') c.argument('target_resource_group', options_list=['--target-resource-group', '-t'], help='Use this to specify the target resource group in which the restored disks will be saved') + with self.argument_context('backup restore restore-azurewl') as c: + c.argument('recovery_config', type=file_type, help='JSON encoded protectable item definition.', completer=FilesCompleter(), options_list=['--recovery-config']) + # Job with self.argument_context('backup job') as c: c.argument('vault_name', vault_name_type, id_part='name') @@ -154,3 +212,12 @@ def load_arguments(self, _): with self.argument_context('backup job wait') as c: c.argument('timeout', type=int, help='Maximum time, in seconds, to wait before aborting.') + + with self.argument_context('backup recoveryconfig show') as c: + c.argument('vault_name', vault_name_type, id_part='name') + c.argument('container_name', container_name_type) + c.argument('item_name', item_name_type) + c.argument('restore_mode', arg_type=get_enum_type(['OriginalWorkloadRestore', 'AlternateWorkloadRestore']), options_list=['--restore-mode']) + c.argument('rp_name', rp_name_type) + c.argument('target_item', type=file_type, help='JSON encoded protectable item definition.', completer=FilesCompleter(), options_list=['--target-item']) + c.argument('log_point_in_time', options_list=['--log-point-in-time']) diff --git a/src/azure-cli/azure/cli/command_modules/backup/_validators.py b/src/azure-cli/azure/cli/command_modules/backup/_validators.py index 89a7b9d6f01..5a4538c0d41 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/_validators.py +++ b/src/azure-cli/azure/cli/command_modules/backup/_validators.py @@ -9,11 +9,11 @@ def datetime_type(string): - """ Validates UTC datettime in accepted format. Examples: 31-12-2017 """ - accepted_date_formats = ['%d-%m-%Y'] + """ Validates UTC datettime in accepted format. Examples: 31-12-2017, 31-12-2017-05:30:00 """ + accepted_date_formats = ['%d-%m-%Y', '%d-%m-%Y-%H:%M:%S'] for form in accepted_date_formats: try: return datetime.strptime(string, form) except ValueError: # checks next format pass - raise ValueError("Input '{}' not valid. Valid example: 31-12-2017".format(string)) + raise ValueError("Input '{}' not valid. Valid example: 31-12-2017, 31-12-2017-05:30:00".format(string)) 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 347ce687a13..bf39cb64752 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/commands.py +++ b/src/azure-cli/azure/cli/command_modules/backup/commands.py @@ -7,17 +7,22 @@ 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 # pylint: disable=unused-variable + item_level_recovery_connections_cf, backup_protected_items_cf, backup_protectable_items_cf, \ + protection_intent_cf, protection_containers_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_item_list, transform_job_list, transform_protectable_item_list, transform_recovery_points_list, + transform_wl_policy_show, transform_containers_list, transform_policies_list, transform_items_list, + transform_enable_protection_for_azure_wl, transform_wl_policy_set) # pylint: disable=line-too-long +# pylint: disable=too-many-statements def load_command_table(self, _): backup_custom = CliCommandType(operations_tmpl='azure.cli.command_modules.backup.custom#{}') + backup_custom_base = CliCommandType(operations_tmpl='azure.cli.command_modules.backup.custom_base#{}') + backup_vaults_sdk = CliCommandType( operations_tmpl='azure.mgmt.recoveryservices.operations#VaultsOperations.{}', client_factory=vaults_cf) @@ -34,28 +39,40 @@ def load_command_table(self, _): g.custom_command('backup-properties set', 'set_backup_properties', client_factory=backup_storage_configs_cf) g.custom_command('delete', 'delete_vault', confirmation=True) - with self.command_group('backup container', backup_custom, client_factory=backup_protection_containers_cf) as g: - g.show_command('show', 'show_container') - g.command('list', 'list_containers', table_transformer=transform_container_list) + with self.command_group('backup container', backup_custom_base, client_factory=protection_containers_cf) as g: + g.show_command('show', 'show_container', client_factory=backup_protection_containers_cf) + g.command('list', 'list_containers', table_transformer=transform_containers_list, client_factory=backup_protection_containers_cf) + g.command('register', 'register_wl_container') + g.command('re-register', 're_register_wl_container', confirmation=True) + g.command('unregister', 'unregister_wl_container', confirmation=True) - with self.command_group('backup policy', backup_custom, client_factory=protection_policies_cf) as g: + 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') - g.show_command('show', 'show_policy') - g.command('list', 'list_policies', client_factory=backup_policies_cf, table_transformer=transform_policy_list) + g.show_command('show', 'show_policy', table_transformer=transform_wl_policy_show) + g.command('list', 'list_policies', client_factory=backup_policies_cf, table_transformer=transform_policies_list) g.command('list-associated-items', 'list_associated_items_for_policy', client_factory=backup_protected_items_cf, table_transformer=transform_item_list) - g.command('set', 'set_policy') + g.command('set', 'set_policy', table_transformer=transform_wl_policy_set) g.command('delete', 'delete_policy') + g.command('new', 'new_policy', table_transformer=transform_wl_policy_set) - with self.command_group('backup protection', backup_custom, client_factory=protected_items_cf) as g: + with self.command_group('backup protection', backup_custom_base, client_factory=protected_items_cf) as g: g.command('check-vm', 'check_protection_enabled_for_vm') g.command('enable-for-vm', 'enable_protection_for_vm') + g.command('enable-for-azurewl', 'enable_protection_for_azure_wl', table_transformer=transform_enable_protection_for_azure_wl) g.command('backup-now', 'backup_now', client_factory=backups_cf) g.command('disable', 'disable_protection', confirmation=True) + g.command('auto-enable-for-azurewl', 'auto_enable_for_azure_wl', client_factory=protection_intent_cf) + g.command('disable auto-for-azurewl', 'disable_auto_for_azure_wl', client_factory=protection_intent_cf) + + 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) + g.command('list', 'list_items', table_transformer=transform_items_list, client_factory=backup_protected_items_cf) + g.command('set-policy', 'update_policy_for_item') - with self.command_group('backup item', backup_custom, client_factory=backup_protected_items_cf) as g: - g.show_command('show', 'show_item') - g.command('list', 'list_items', table_transformer=transform_item_list) - g.command('set-policy', 'update_policy_for_item', client_factory=protected_items_cf) + 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) @@ -63,16 +80,18 @@ def load_command_table(self, _): g.command('stop', 'stop_job', client_factory=job_cancellations_cf) g.command('wait', 'wait_for_job') - with self.command_group('backup recoverypoint', backup_custom, client_factory=recovery_points_cf) as g: + 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('logchain show', 'list_recovery_points') + g.command('list', 'list_recovery_points', table_transformer=transform_recovery_points_list) - with self.command_group('backup restore', backup_custom, client_factory=restores_cf) as g: + with self.command_group('backup restore', backup_custom_base, client_factory=restores_cf) as g: g.command('restore-disks', 'restore_disks') + g.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', is_preview=True): - pass + with self.command_group('backup recoveryconfig', backup_custom_base, client_factory=recovery_points_cf) as g: + g.show_command('show', 'show_recovery_config') 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 2b7105ac947..85d5c019d06 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/custom.py +++ b/src/azure-cli/azure/cli/command_modules/backup/custom.py @@ -113,6 +113,20 @@ def list_associated_items_for_policy(client, resource_group_name, vault_name, na def set_policy(client, resource_group_name, vault_name, policy): 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 + + # Validating range of days input + if schedule_run_frequency == 'Weekly' and retention_range_in_days != 5: + raise CLIError( + """ + Retention policy range must be equal to 5. + """) + if schedule_run_frequency == 'Daily' and (retention_range_in_days > 5 or retention_range_in_days < 1): + raise CLIError( + """ + Retention policy range must be between 1 to 5. + """) error_message = "For SnapshotRetentionRangeInDays, the minimum value is 1 and"\ "maximum is 5. For weekly backup policies, the only allowed value is 5 "\ @@ -237,17 +251,7 @@ def list_items(cmd, client, resource_group_name, vault_name, container_name=None return paged_items -def update_policy_for_item(cmd, client, resource_group_name, vault_name, container_name, item_name, policy_name, - container_type="AzureIaasVM", item_type="VM"): - # Client factories - backup_protected_items_client = backup_protected_items_cf(cmd.cli_ctx) - - # Get objects from JSON files - item = show_item(cmd, backup_protected_items_client, resource_group_name, vault_name, container_name, item_name, - container_type, item_type) - policy = show_policy(protection_policies_cf(cmd.cli_ctx), resource_group_name, vault_name, policy_name) - _validate_policy(policy) - +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( """ @@ -275,12 +279,7 @@ def update_policy_for_item(cmd, client, resource_group_name, vault_name, contain return _track_backup_job(cmd.cli_ctx, result, vault_name, resource_group_name) -def backup_now(cmd, client, resource_group_name, vault_name, container_name, item_name, retain_until, - container_type="AzureIaasVM", item_type="VM"): - item = show_item(cmd, backup_protected_items_cf(cmd.cli_ctx), resource_group_name, vault_name, container_name, - item_name, container_type, item_type) - _validate_item(item) - +def backup_now(cmd, client, resource_group_name, vault_name, item, retain_until): # Get container and item URIs container_uri = _get_protection_container_uri_from_id(item.id) item_uri = _get_protected_item_uri_from_id(item.id) @@ -306,12 +305,7 @@ def show_recovery_point(cmd, client, resource_group_name, vault_name, container_ return client.get(vault_name, resource_group_name, fabric_name, container_uri, item_uri, name) -def list_recovery_points(cmd, client, resource_group_name, vault_name, container_name, item_name, - container_type="AzureIaasVM", item_type="VM", start_date=None, end_date=None): - item = show_item(cmd, backup_protected_items_cf(cmd.cli_ctx), resource_group_name, vault_name, container_name, - item_name, container_type, item_type) - _validate_item(item) - +def list_recovery_points(cmd, client, resource_group_name, vault_name, item, start_date=None, end_date=None): # Get container and item URIs container_uri = _get_protection_container_uri_from_id(item.id) item_uri = _get_protected_item_uri_from_id(item.id) @@ -458,12 +452,7 @@ def restore_files_unmount_rp(cmd, client, resource_group_name, vault_name, conta _track_backup_operation(cmd.cli_ctx, resource_group_name, result, vault_name) -def disable_protection(cmd, client, resource_group_name, vault_name, container_name, item_name, # pylint: disable=unused-argument - container_type="AzureIaasVM", item_type="VM", delete_backup_data=False, **kwargs): - item = show_item(cmd, backup_protected_items_cf(cmd.cli_ctx), resource_group_name, vault_name, container_name, - item_name, container_type, item_type) - _validate_item(item) - +def disable_protection(cmd, client, resource_group_name, vault_name, item, delete_backup_data=False, **kwargs): # Get container and item URIs container_uri = _get_protection_container_uri_from_id(item.id) item_uri = _get_protected_item_uri_from_id(item.id) 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 new file mode 100644 index 00000000000..d56c04ebfd5 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/custom_base.py @@ -0,0 +1,260 @@ +# -------------------------------------------------------------------------------------------- +# 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 as custom +import azure.cli.command_modules.backup.custom_wl as custom_wl +import azure.cli.command_modules.backup.custom_help as custom_help +import azure.cli.command_modules.backup.custom_common as common +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, backup_protectable_items_cf, \ + protection_intent_cf, protection_containers_cf +from azure.cli.core.util import CLIError +# pylint: disable=import-error + +fabric_name = "Azure" + + +def show_container(cmd, client, name, resource_group_name, vault_name, backup_management_type=None, + status="Registered"): + return common.show_container(cmd, client, name, resource_group_name, vault_name, backup_management_type, status) + +def list_containers(client, resource_group_name, vault_name, backup_management_type, status="Registered"): + return common.list_containers(client, resource_group_name, vault_name, backup_management_type, status) + + +def show_policy(client, resource_group_name, vault_name, name): + return common.show_policy(client, resource_group_name, vault_name, name) + + +def list_policies(client, resource_group_name, vault_name, workload_type=None, backup_management_type=None): + return common.list_policies(client, resource_group_name, vault_name, workload_type, backup_management_type) + + +def show_item(cmd, client, resource_group_name, vault_name, container_name, name, backup_management_type=None, + workload_type=None): + + return common.show_item(cmd, client, resource_group_name, vault_name, container_name, name, + backup_management_type, workload_type) + + +def list_items(cmd, client, resource_group_name, vault_name, workload_type=None, container_name=None, + container_type=None): + return common.list_items(cmd, client, resource_group_name, vault_name, workload_type, + container_name, container_type) + + +def show_recovery_point(cmd, client, resource_group_name, vault_name, container_name, item_name, name, + workload_type=None, backup_management_type=None): + + return common.show_recovery_point(cmd, client, resource_group_name, vault_name, container_name, + item_name, name, workload_type, backup_management_type) + + +def list_recovery_points(cmd, client, resource_group_name, vault_name, container_name, item_name, + backup_management_type=None, workload_type=None, start_date=None, end_date=None): + + items_client = backup_protected_items_cf(cmd.cli_ctx) + item = show_item(cmd, items_client, resource_group_name, vault_name, container_name, item_name, backup_management_type, + workload_type) + custom_help.validate_item(item) + + if isinstance(item, list): + raise CLIError("Multiple items found. Please give native names instead.") + + if item.properties.backup_management_type.lower() == "azureiaasvm": + return custom.list_recovery_points(cmd, client, resource_group_name, vault_name, item, start_date, end_date) + + 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 [] + + +def backup_now(cmd, client, resource_group_name, vault_name, item_name, retain_until, 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, backup_management_type, + workload_type) + custom_help.validate_item(item) + + if isinstance(item, list): + raise CLIError("Multiple items found. Please give native names instead.") + + if item.properties.backup_management_type.lower() == "azureiaasvm": + return custom.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 + + +def disable_protection(cmd, client, resource_group_name, vault_name, item_name, container_name, + backup_management_type=None, workload_type=None, delete_backup_data=False, **kwargs): + + items_client = backup_protected_items_cf(cmd.cli_ctx) + item = show_item(cmd, items_client, resource_group_name, vault_name, container_name, item_name, backup_management_type, + workload_type) + custom_help.validate_item(item) + + if isinstance(item, list): + raise CLIError("Multiple items found. Please give native names instead.") + + if item.properties.backup_management_type.lower() == "azureworkload": + return custom_wl.disable_protection(cmd, client, resource_group_name, vault_name, item, delete_backup_data) + + if item.properties.backup_management_type.lower() == "azureiaasvm": + return custom.disable_protection(cmd, client, resource_group_name, vault_name, item, delete_backup_data, + **kwargs) + return None + + +def update_policy_for_item(cmd, client, resource_group_name, vault_name, container_name, item_name, policy_name, + workload_type=None, backup_management_type=None): + + items_client = backup_protected_items_cf(cmd.cli_ctx) + item = show_item(cmd, items_client, resource_group_name, vault_name, container_name, item_name, backup_management_type, + workload_type) + custom_help.validate_item(item) + + if isinstance(item, list): + raise CLIError("Multiple items found. Please give native names instead.") + + policy = show_policy(protection_policies_cf(cmd.cli_ctx), resource_group_name, vault_name, policy_name) + custom_help.validate_policy(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) + + if item.properties.backup_management_type.lower() == "azureiaasvm": + return custom.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 == "AzureWorkload": + return custom_wl.set_policy(client, resource_group_name, vault_name, policy, name) + return custom.set_policy(client, resource_group_name, vault_name, policy) + + +def delete_policy(client, resource_group_name, vault_name, name): + return custom.delete_policy(client, resource_group_name, vault_name, name) + + +def new_policy(client, resource_group_name, vault_name, policy, name, workload_type, container_type): + return custom_wl.new_policy(client, resource_group_name, vault_name, policy, name, container_type, workload_type) + + +def get_default_policy_for_vm(client, resource_group_name, vault_name): + return custom.get_default_policy_for_vm(client, resource_group_name, vault_name) + + +def list_associated_items_for_policy(client, resource_group_name, vault_name, name): + 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_type="AzureWorkload"): + 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") + cusomt_help.validate_container(container) + container_uri = container.name + return custom_wl.list_protectable_items(cmd, 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, container_type="AzureWorkload"): + 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 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_wl_container(cmd, client, vault_name, resource_group_name, container_name): + return custom_wl.unregister_wl_container(cmd, client, vault_name, resource_group_name, container_name) + + +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) + + +def re_register_wl_container(cmd, client, vault_name, resource_group_name, workload_type, container_name, + container_type="AzureWorkload"): + return custom_wl.re_register_wl_container(cmd, client, vault_name, resource_group_name, workload_type, + container_name, container_type) + + +def check_protection_enabled_for_vm(cmd, vm_id): + return custom.check_protection_enabled_for_vm(cmd, vm_id) + + +def enable_protection_for_vm(cmd, client, resource_group_name, vault_name, vm, policy_name): + 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): + policy_object = show_policy(protection_policies_cf(cmd.cli_ctx), resource_group_name, vault_name, 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): + policy_object = show_policy(protection_policies_cf(cmd.cli_ctx), resource_group_name, vault_name, name) + return custom_wl.auto_enable_for_azure_wl(cmd, 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, + restore_to_staging_storage_account=None): + return custom.restore_disks(cmd, client, resource_group_name, vault_name, container_name, item_name, rp_name, + storage_account, restore_to_staging_storage_account) + + +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=None, log_point_in_time=None): + return custom_wl.show_recovery_config(cmd, client, resource_group_name, vault_name, restore_mode, container_name, + item_name, rp_name, target_item, log_point_in_time) + + +def _get_containers(client, container_type, status, resource_group_name, vault_name, container_name=None): + filter_dict = { + 'backupManagementType': container_type, + 'status': status + } + + if container_name and not custom_help.is_native_name(container_name): + filter_dict['friendlyName'] = container_name + + filter_string = custom_help.get_filter_string(filter_dict) + + paged_containers = client.list(vault_name, resource_group_name, filter_string) + containers = custom_help.get_list_from_paged_response(paged_containers) + + if container_name and custom_help.is_native_name(container_name): + return [container for container in containers if container.name == container_name] + + return containers diff --git a/src/azure-cli/azure/cli/command_modules/backup/custom_common.py b/src/azure-cli/azure/cli/command_modules/backup/custom_common.py new file mode 100644 index 00000000000..1acb49ce4f9 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/custom_common.py @@ -0,0 +1,135 @@ +# -------------------------------------------------------------------------------------------- +# 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 custom_help +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, backup_protectable_items_cf, \ + protection_intent_cf, protection_containers_cf +from azure.cli.core.util import CLIError +# pylint: disable=import-error + +fabric_name = "Azure" +# Mapping of workload type +workload_type_map = {'MSSQL': 'SQLDataBase', + 'SAPHANA': 'SAPHanaDatabase', + 'SAPASE': 'SAPAseDatabase'} + + +def show_container(cmd, client, name, resource_group_name, vault_name, backup_management_type=None, + status="Registered"): + container_type = custom_help.validate_and_extract_container_type(name, backup_management_type) + containers = _get_containers(client, container_type, status, resource_group_name, vault_name, name) + return custom_help.get_none_one_or_many(containers) + + +def list_containers(client, resource_group_name, vault_name, backup_management_type, status="Registered"): + return _get_containers(client, backup_management_type, status, resource_group_name, vault_name) + + +def show_policy(client, resource_group_name, vault_name, name): + return client.get(vault_name, resource_group_name, name) + + +def list_policies(client, resource_group_name, vault_name, workload_type=None, backup_management_type=None): + workload_type_map = {'MSSQL': 'SQLDataBase', + 'SAPHANA': 'SAPHanaDatabase', + 'SAPASE': 'SAPAseDatabase'} + if workload_type: + workload_type = workload_type_map[workload_type] + + filter_string = custom_help.get_filter_string({ + 'backupManagementType': backup_management_type, + 'workloadType': workload_type}) + + policies = client.list(vault_name, resource_group_name, filter_string) + return custom_help.get_list_from_paged_response(policies) + + +def show_item(cmd, client, resource_group_name, vault_name, container_name, name, backup_management_type=None, + workload_type=None): + + container_type = custom_help.validate_and_extract_container_type(container_name, backup_management_type) + + items = list_items(cmd, client, resource_group_name, vault_name, workload_type, container_name, + container_type) + + if custom_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()] + + return custom_help.get_none_one_or_many(filtered_items) + + +def list_items(cmd, client, resource_group_name, vault_name, workload_type=None, container_name=None, + container_type=None): + filter_string = custom_help.get_filter_string({ + 'backupManagementType': container_type, + 'itemType': workload_type}) + + items = client.list(vault_name, resource_group_name, filter_string) + paged_items = custom_help.get_list_from_paged_response(items) + + if container_name: + if custom_help.is_native_name(container_name): + return [item for item in paged_items if + item.properties.container_name.lower() == container_name.lower()] + else: + return [item for item in paged_items if + item.properties.container_name.lower().split(';')[-1] == container_name.lower()] + + return paged_items + + +def show_recovery_point(cmd, client, resource_group_name, vault_name, container_name, item_name, name, + workload_type=None, backup_management_type=None): + + items_client = backup_protected_items_cf(cmd.cli_ctx) + item = show_item(cmd, items_client, resource_group_name, vault_name, container_name, item_name, + backup_management_type, workload_type) + custom_help.validate_item(item) + + if isinstance(item, list): + raise CLIError("Multiple items found. Please give native names instead.") + + # Get container and item URIs + container_uri = custom_help.get_protection_container_uri_from_id(item.id) + item_uri = custom_help.get_protected_item_uri_from_id(item.id) + + return client.get(vault_name, resource_group_name, fabric_name, container_uri, item_uri, name) + +def delete_policy(client, resource_group_name, vault_name, name): + client.delete(vault_name, resource_group_name, name) + +def new_policy(client, resource_group_name, vault_name, policy, policy_name, container_type, 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 = container_type + policy_object.properties.workload_type = workload_type + + return client.create_or_update(vault_name, resource_group_name, policy_name, policy_object) + +def _get_containers(client, backup_management_type, status, resource_group_name, vault_name, container_name=None): + filter_dict = { + 'backupManagementType': backup_management_type, + 'status': status + } + + if container_name and not custom_help.is_native_name(container_name): + filter_dict['friendlyName'] = container_name + + filter_string = custom_help.get_filter_string(filter_dict) + + paged_containers = client.list(vault_name, resource_group_name, filter_string) + containers = custom_help.get_list_from_paged_response(paged_containers) + + if container_name and custom_help.is_native_name(container_name): + return [container for container in containers if container.name == container_name] + + return containers \ No newline at end of file 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 new file mode 100644 index 00000000000..b8f0fba5885 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/custom_help.py @@ -0,0 +1,376 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import time +import json +import re +import os +from datetime import datetime, timedelta +from six.moves.urllib.parse import urlparse # pylint: disable=import-error + +from knack.log import get_logger + +from msrest.paging import Paged +from msrestazure.tools import parse_resource_id, is_valid_resource_id + +from azure.mgmt.recoveryservicesbackup.models import OperationStatusValues, JobStatus + +from azure.cli.core.util import CLIError, sdk_no_wait +from azure.cli.command_modules.backup._client_factory import ( + job_details_cf, protection_container_refresh_operation_results_cf, + backup_operation_statuses_cf, protection_container_operation_results_cf) + + +logger = get_logger(__name__) + +fabric_name = "Azure" +os_windows = 'Windows' +os_linux = 'Linux' +password_offset = 33 +password_length = 15 + +backup_management_type_map = {"AzureVM": "AzureIaasVM", "AzureWorkload": "AzureWorkLoad", + "AzureStorage": "AzureStorage"} + +# Client Utilities + + +def is_native_name(name): + return ";" in name + + +def is_id(identity): + return "/" in identity + + +def is_sql(resource_type): + return resource_type.lower() == 'sqldatabase' + + +def is_hana(resource_type): + return resource_type.lower() == 'saphanadatabase' + + +def is_wl_container(name): + return 'vmappcontainer' in name.lower() + + +def is_range_valid(start_date, end_date): + if start_date > end_date: + raise CLIError("""Start date must be earlier than end date.""") + + +def get_resource_id(resource_id): + return "/".join(resource_id.split('/')[3:]) + + +def get_target_path(resource_type, path, logical_name, data_directory_paths): + for path in data_directory_paths: + if path.type == resource_type: + data_directory_path = path + file_type = path.split('\\')[-1].split('.')[1] + file_name = logical_name + '_' + str(int(time.time())) + '.' + file_type + return data_directory_path.path + file_name + + +def get_containers(client, container_type, status, resource_group_name, vault_name, container_name=None): + filter_dict = { + 'backupManagementType': container_type, + 'status': status + } + + if container_name and not is_native_name(container_name): + filter_dict['friendlyName'] = container_name + filter_string = get_filter_string(filter_dict) + + paged_containers = client.list(vault_name, resource_group_name, filter_string) + containers = get_list_from_paged_response(paged_containers) + + if container_name and is_native_name(container_name): + return [container for container in containers if container.name == container_name] + + return containers + + +def get_resource_name_and_rg(resource_group_name, name_or_id): + if is_valid_resource_id(name_or_id): + id_parts = parse_resource_id(name_or_id) + name = id_parts['name'] + resource_group = id_parts['resource_group'] + else: + name = name_or_id + resource_group = resource_group_name + return name, resource_group + + +def validate_container(container): + validate_object(container, "Container not found. Please provide a valid container_name.") + + +def validate_item(item): + validate_object(item, "Item not found. Please provide a valid item_name.") + + +def validate_policy(policy): + validate_object(policy, "Policy not found. Please provide a valid policy_name.") + + +def validate_object(obj, error_message): + if obj is None: + raise ValueError(error_message) + + +# Tracking Utilities +# pylint: disable=inconsistent-return-statements +def track_backup_ilr(cli_ctx, result, vault_name, resource_group): + operation_status = track_backup_operation(cli_ctx, resource_group, result, vault_name) + + if operation_status.properties: + recovery_target = operation_status.properties.recovery_target + return recovery_target.client_scripts + + +# pylint: disable=inconsistent-return-statements +def track_backup_job(cli_ctx, result, vault_name, resource_group): + job_details_client = job_details_cf(cli_ctx) + + operation_status = track_backup_operation(cli_ctx, resource_group, result, vault_name) + + if operation_status.properties: + job_id = operation_status.properties.job_id + job_details = job_details_client.get(vault_name, resource_group, job_id) + return job_details + + +def track_backup_operation(cli_ctx, resource_group, result, vault_name): + backup_operation_statuses_client = backup_operation_statuses_cf(cli_ctx) + + operation_id = get_operation_id_from_header(result.response.headers['Azure-AsyncOperation']) + operation_status = backup_operation_statuses_client.get(vault_name, resource_group, operation_id) + while operation_status.status == OperationStatusValues.in_progress.value: + time.sleep(1) + operation_status = backup_operation_statuses_client.get(vault_name, resource_group, operation_id) + return operation_status + + +def track_refresh_operation(cli_ctx, result, vault_name, resource_group): + protection_container_refresh_operation_results_client = protection_container_refresh_operation_results_cf(cli_ctx) + + operation_id = get_operation_id_from_header(result.response.headers['Location']) + result = sdk_no_wait(True, protection_container_refresh_operation_results_client.get, + vault_name, resource_group, fabric_name, operation_id) + while result.response.status_code == 202: + time.sleep(1) + result = sdk_no_wait(True, protection_container_refresh_operation_results_client.get, + vault_name, resource_group, fabric_name, operation_id) + + +def track_register_operation(cli_ctx, result, vault_name, resource_group, container_name): + protection_container_operation_results_client = protection_container_operation_results_cf(cli_ctx) + + operation_id = get_operation_id_from_header(result.response.headers['Location']) + result = sdk_no_wait(True, protection_container_operation_results_client.get, + vault_name, resource_group, fabric_name, container_name, operation_id) + while result.response.status_code == 202: + time.sleep(1) + result = sdk_no_wait(True, protection_container_operation_results_client.get, + vault_name, resource_group, fabric_name, container_name, operation_id) + + +def job_in_progress(job_status): + return job_status in [JobStatus.in_progress.value, JobStatus.cancelling.value] + +# List Utilities + + +def get_list_from_paged_response(obj_list): + return list(obj_list) if isinstance(obj_list, Paged) else obj_list + + +def get_none_one_or_many(obj_list): + if not obj_list: + return None + if len(obj_list) == 1: + return obj_list[0] + return obj_list + + +def get_filter_string(filter_dict): + filter_list = [] + for k, v in sorted(filter_dict.items()): + filter_segment = None + if isinstance(v, str): + filter_segment = "{} eq '{}'".format(k, v) + elif isinstance(v, datetime): + filter_segment = "{} eq '{}'".format(k, v.strftime('%Y-%m-%d %I:%M:%S %p')) # yyyy-MM-dd hh:mm:ss tt + elif isinstance(v, bool): + filter_segment = "{} eq '{}'".format(k, str(v)) + if filter_segment is not None: + filter_list.append(filter_segment) + filter_string = " and ".join(filter_list) + return None if not filter_string else filter_string + + +def get_query_dates(end_date, start_date): + query_start_date = None + query_end_date = None + if start_date and end_date: + query_start_date = start_date + query_end_date = end_date + elif not start_date and end_date: + query_end_date = end_date + query_start_date = query_end_date - timedelta(days=30) + elif start_date and not end_date: + query_start_date = start_date + query_end_date = query_start_date + timedelta(days=30) + return query_end_date, query_start_date + +# JSON Utilities + + +def get_container_from_json(client, container): + return get_object_from_json(client, container, 'ProtectionContainerResource') + + +def get_vault_from_json(client, vault): + return get_object_from_json(client, vault, 'Vault') + + +def get_vm_from_json(client, vm): + return get_object_from_json(client, vm, 'VirtualMachine') + + +def get_policy_from_json(client, policy): + return get_object_from_json(client, policy, 'ProtectionPolicyResource') + + +def get_item_from_json(client, item): + return get_object_from_json(client, item, 'ProtectedItemResource') + + +def get_protectable_item_from_json(client, item): + return get_object_from_json(client, item, 'WorkloadProtectableItemResource') + + +def get_job_from_json(client, job): + return get_object_from_json(client, job, 'JobResource') + + +def get_recovery_point_from_json(client, recovery_point): + return get_object_from_json(client, recovery_point, 'RecoveryPointResource') + + +def get_or_read_json(json_or_file): + json_obj = None + if is_json(json_or_file): + json_obj = json.loads(json_or_file) + elif os.path.exists(json_or_file): + with open(json_or_file) as f: + json_obj = json.load(f) + if json_obj is None: + raise ValueError( + """ + The variable passed should be in valid JSON format and be supplied by az backup CLI commands. + Make sure that you use output of relevant 'az backup show' commands and the --out is 'json' + (use -o json for explicit JSON output) while assigning value to this variable. + Take care to edit only the values and not the keys within the JSON file or string. + """) + return json_obj + + +def get_object_from_json(client, json_or_file, class_name): + # Determine if input is json or file + json_obj = get_or_read_json(json_or_file) + + # Deserialize json to object + param = client._deserialize(class_name, json_obj) # pylint: disable=protected-access + if param is None: + raise ValueError( + """ + The variable passed should be in valid JSON format and be supplied by az backup CLI commands. + Make sure that you use output of relevant 'az backup show' commands and the --out is 'json' + (use -o json for explicit JSON output) while assigning value to this variable. + Take care to edit only the values and not the keys within the JSON file or string. + """) + + return param + + +def is_json(content): + try: + json.loads(content) + except ValueError: + return False + return True + +# ID Utilities + + +def get_protection_container_uri_from_id(arm_id): + m = re.search('(?<=protectionContainers/)[^/]+', arm_id) + return m.group(0) + + +def get_protectable_item_uri_from_id(arm_id): + m = re.search('(?<=protectableItems/)[^/]+', arm_id) + return m.group(0) + + +def get_protected_item_uri_from_id(arm_id): + m = re.search('(?<=protectedItems/)[^/]+', arm_id) + return m.group(0) + + +def get_vm_name_from_vm_id(arm_id): + m = re.search('(?<=virtualMachines/)[^/]+', arm_id) + return m.group(0) + + +def get_resource_group_from_id(arm_id): + m = re.search('(?<=resourceGroups/)[^/]+', arm_id) + return m.group(0) + + +def get_operation_id_from_header(header): + parse_object = urlparse(header) + return parse_object.path.split("/")[-1] + + +def get_vault_from_arm_id(arm_id): + m = re.search('(?<=vaults/)[^/]+', arm_id) + return m.group(0) + + +def validate_and_extract_container_type(container_name, backup_management_type): + if not is_native_name(container_name) and backup_management_type is None: + raise CLIError("""backup management type required""") + + if backup_management_type is not None: + if backup_management_type in backup_management_type_map.values(): + return backup_management_type + return backup_management_type_map[backup_management_type] + + container_type = container_name.split(";")[0] + container_type_mappings = {"IaasVMContainer": "AzureIaasVM", "StorageContainer": "AzureStorage", + "VMAppContainer": "AzureWorkload"} + + if container_type in container_type_mappings: + return container_type_mappings[container_type] + return None + + +def validate_and_extract_item_name(item_name, workload_type, container_type): + if not is_native_name(item_name) and workload_type is None: + raise CLIError("""workload type required""") + if is_native_name(item_name): + return item_name + + +def get_none_one_or_many(obj_list): + if not obj_list: + return None + if len(obj_list) == 1: + return obj_list[0] + return obj_list 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..04041e3f418 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/custom_wl.py @@ -0,0 +1,663 @@ +# -------------------------------------------------------------------------------------------- +# 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 +import json +# pylint: disable=import-error + +from datetime import datetime +from uuid import uuid4 +from importlib import import_module +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 + +from azure.cli.core.util import CLIError, sdk_no_wait +from azure.cli.command_modules.backup._client_factory import backup_workload_items_cf, \ + protected_items_cf, protection_containers_cf, protectable_containers_cf, protection_policies_cf, \ + backup_protection_containers_cf, backup_protected_items_cf + +fabric_name = "Azure" + +# 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 show_wl_container(client, name, resource_group_name, vault_name, container_type, status="Registered"): + filter_dict = { + 'backupManagementType': container_type, + 'status': status + } + + filter_dict['friendlyName'] = name + filter_string = cust_help._get_filter_string(filter_dict) + + paged_containers = client.list(vault_name, resource_group_name, filter_string) + containers = cust_help._get_list_from_paged_response(paged_containers) + + return cust_help.get_none_one_or_many(containers) + + +def list_wl_containers(client, resource_group_name, vault_name, container_type, status="Registered"): + return cust_help.get_containers(client, container_type, status, resource_group_name, vault_name) + + +def show_wl_item(cmd, client, resource_group_name, vault_name, container_name, name, container_type, + item_type): + + items = list_wl_items(client, resource_group_name, vault_name, item_type, container_name) + + if cust_help.is_native_name(name): + filtered_items = [item for item in items if item.name == name] + else: + filtered_items = [item for item in items if item.properties.friendly_name == name] + + return cust_help.get_none_one_or_many(filtered_items) + + +def list_wl_items(client, resource_group_name, vault_name, workload_type, container_name=None): + + if workload_type is not None and workload_type not in workload_type_map.values(): + workload_type = workload_type_map[workload_type] + + filter_string = cust_help.get_filter_string({ + 'backupManagementType': 'AzureWorkload', + 'itemType': workload_type}) + + items = client.list(vault_name, resource_group_name, filter_string) + paged_items = cust_help.get_list_from_paged_response(items) + + container_uris = [] + if container_name: + if cust_help.is_native_name(container_name): + container_uris.append(container_name.lower()) + else: + containers = show_wl_container(backup_protection_containers_cf(cmd.cli_ctx), + container_name, resource_group_name, vault_name, + container_type) + + if isinstance(container, list): + for container in containers: + container_uris.append(container.name.lower()) + else: + if containers is not None: + container_uris.append(containers.name.lower()) + + return [item for item in paged_items if + cust_help.get_protection_container_uri_from_id(item.id).lower() in container_uris] + + return paged_items + + +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 + + 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 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 new_policy(client, resource_group_name, vault_name, policy, policy_name, container_type, 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 = container_type + policy_object.properties.workload_type = workload_type + + 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): + 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 list_protectable_items(cmd, 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': container_type, + '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 show_wl_recovery_point(cmd, client, resource_group_name, vault_name, container_name, item_name, name, + workload_type, container_type="AzureWorkload"): + item = show_wl_item(cmd, resource_group_name, vault_name, container_name, + item_name) + cust_help.validate_item(item) + + # 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) + + return client.get(vault_name, resource_group_name, fabric_name, container_uri, item_uri, name) + + +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({ + 'restorePointQueryType': 'Full', + 'startDate': query_start_date, + 'endDate': query_end_date}) + + if cmd.name.split()[2] == 'logchain' 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_name, protectable_item): + # Get protectable item. + protectable_item_object = cust_help.get_protectable_item_from_json(client, 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 + + # Dynamically instantiating class based on item type + module_ = import_module("azure.mgmt.recoveryservicesbackup.models.azure_vm_workload_" + + module_map[protectable_item_type.lower()] + "_protected_item") + class_ = getattr(module_, "AzureVmWorkload" + attr_map[protectable_item_type.lower()] + "ProtectedItem") + + # Construct enable protection request object + properties = class_(backup_management_type='AzureWorkload', + policy_id=policy_id, 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): + + 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) + + # Dynamically instantiating class based on item type + module_ = import_module("azure.mgmt.recoveryservicesbackup.models.azure_vm_workload_" + + module_map[backup_item_type.lower()] + "_protected_item") + class_ = getattr(module_, "AzureVmWorkload" + attr_map[backup_item_type.lower()] + "ProtectedItem") + + properties = class_(protection_state='ProtectionStopped', 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(cmd, client, resource_group_name, vault_name, policy_object, protectable_item): + protectable_item_object = cust_help.get_protectable_item_from_json(client, 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: + 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: + 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): + restore_module_map = {'sql': 'sql', + 'saphana': 'sap_hana', + 'sqlpointintime': 'sql_point_in_time', + 'saphanapointintime': 'sap_hana_point_in_time'} + + 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'] + + if log_point_in_time is not None: + item_type = item_type + 'PointInTime' + + module_ = import_module("azure.mgmt.recoveryservicesbackup.models.azure_workload_" + + restore_module_map[item_type.lower()] + "_restore_request") + class_ = getattr(module_, "AzureWorkload" + item_type + "RestoreRequest") + + # Construct trigger restore request object + trigger_restore_properties = class_(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, 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. + """) + else: + protectable_item_object = cust_help.get_protectable_item_from_json(client, target_item) + protectable_item_type = protectable_item_object.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. + """) + + items_client = backup_protected_items_cf(cmd.cli_ctx) + item = common.show_item(cmd, items_client, resource_group_name, vault_name, container_name, item_name, "AzureWorkload") + cust_help.validate_item(item) + item_type = item.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 len(recovery_points) == 0: + 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 item in items: + if item.properties.friendly_name == protectable_item_object.properties.friendly_name: + if item.properties.server_name == protectable_item_object.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, + item.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 = protectable_item_object.properties.friendly_name + item_friendly_name = item.properties.friendly_name + db_name = friendly_name + '/' + item_friendly_name + '_restored_' + datetime.now().strftime('%m_%d_%Y_%H%M') + + container_id = None + if restore_mode == 'AlternateWorkloadRestore': + container_id = '/'.join(protectable_item_object.id.split('/')[:-2]) + + if not ('sql' in item_type.lower() and restore_mode == 'AlternateWorkloadRestore'): + alternate_directory_paths = None + + return json.dumps({ + '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}) 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..176392e4bb1 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_item.yaml @@ -0,0 +1,13811 @@ +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 08:04:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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 08:04: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:04: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:04: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:05: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/51503c00-59fe-4460-83c6-db0ec7c3bb81?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/51503c00-59fe-4460-83c6-db0ec7c3bb81?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-08T08:05:04.7391196Z","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 08: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 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-08T08:05:04.7391196Z","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 08: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 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/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":5,"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;h221","name":"saphanadatabase;h22;h221","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":"H221","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;h222","name":"saphanadatabase;h22;h222","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":"H222","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;h22_restored_07_04_2019_1241","name":"saphanadatabase;h22;h22_restored_07_04_2019_1241","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_07_04_2019_1241","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: + - '8963' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/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: + - Mon, 08 Jul 2019 08:06:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/saphanadatabase%3Bh22%3Bh22?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/operationsStatus/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 08 Jul 2019 08:06:27 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectedItems/saphanadatabase;h22;h22/operationResults/24f6c858-1460-4c04-b69c-559f6bee8e67?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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:06: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"InProgress","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/24f6c858-1460-4c04-b69c-559f6bee8e67?api-version=2016-12-01 + response: + body: + string: '{"id":"24f6c858-1460-4c04-b69c-559f6bee8e67","name":"24f6c858-1460-4c04-b69c-559f6bee8e67","status":"Succeeded","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"2019-07-08T08:06:27.5290364Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"5e08b764-3158-4641-8fd2-01ce4edc79b4"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/5e08b764-3158-4641-8fd2-01ce4edc79b4?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/5e08b764-3158-4641-8fd2-01ce4edc79b4","name":"5e08b764-3158-4641-8fd2-01ce4edc79b4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M13.6040733S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"HourlyLogBackup"}},"entityFriendlyName":"h22","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2019-07-08T08:06:27.5290364Z","endTime":"2019-07-08T08:07:41.1331097Z","activityId":"48aae966-a157-11e9-9c9e-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '727' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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 --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/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-08T08:05:04.7391196Z","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 08:07: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 show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -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/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/SAPHanaDatabase%3BH22%3Bh22?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","name":"SAPHanaDatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"1264183305","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: + - '1327' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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 container show + Connection: + - keep-alive + ParameterSetName: + - -n -v -g -b --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/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-08T08:05:04.7391196Z","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 08:07: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 show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -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/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/SAPHanaDatabase%3BH22%3Bh22?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","name":"SAPHanaDatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"1264183305","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: + - '1327' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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 show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -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/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22?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","name":"SAPHanaDatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"1264183305","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: + - '1327' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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 list + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -b -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/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;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":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"1264183305","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"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1272' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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 list + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -b -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/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;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":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"1264183305","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"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1272' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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 list + Connection: + - keep-alive + ParameterSetName: + - -g -v -b -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/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;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":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"1264183305","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"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1272' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p -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/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: + - Mon, 08 Jul 2019 08:07:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p -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/protectedItems/SAPHanaDatabase%3Bh22%3Bh22?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","name":"SAPHanaDatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"1264183305","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: + - '1327' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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": + "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", + "serverName": "HANADemoIDC3", "parentName": "H22", "parentType": "AzureVmWorkloadSAPHanaSystem", + "protectionStatus": "Healthy", "protectionState": "IRPending", "lastBackupStatus": + "IRPending", "lastBackupErrorDetail": {"code": "Success", "message": ""}, "protectedItemDataSourceId": + "1264183305", "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: + - '978' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -c -n -p -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: 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?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/operationsStatus/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 08 Jul 2019 08:07:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/protectedItems/SAPHanaDatabase;h22;h22/operationResults/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?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 item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:07: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:08: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"InProgress","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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 -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/backupOperations/3f2f1805-2476-4e86-b5d0-8fcf1c64627f?api-version=2016-12-01 + response: + body: + string: '{"id":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","name":"3f2f1805-2476-4e86-b5d0-8fcf1c64627f","status":"Succeeded","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"2019-07-08T08:07:50.9146516Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"85a0d255-c137-44af-be99-8a2e492cdf0c"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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 -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/backupJobs/85a0d255-c137-44af-be99-8a2e492cdf0c?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/85a0d255-c137-44af-be99-8a2e492cdf0c","name":"85a0d255-c137-44af-be99-8a2e492cdf0c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M12.9995499S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"HourlyLogBackup"}},"entityFriendlyName":"h22","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2019-07-08T08:07:50.9146516Z","endTime":"2019-07-08T08:09:03.9142015Z","activityId":"79d66470-a157-11e9-9f50-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '727' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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 item show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -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/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/SAPHanaDatabase%3BH22%3Bh22?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","name":"SAPHanaDatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"1264183305","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: + - '1327' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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 + 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer%3Bcompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22?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/8b113e86-6857-4b54-bc49-05e0d7df9616?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 08 Jul 2019 08:09:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperationResults/8b113e86-6857-4b54-bc49-05e0d7df9616?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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/8b113e86-6857-4b54-bc49-05e0d7df9616?api-version=2016-12-01 + response: + body: + string: '{"id":"8b113e86-6857-4b54-bc49-05e0d7df9616","name":"8b113e86-6857-4b54-bc49-05e0d7df9616","status":"InProgress","startTime":"2019-07-08T08:09:06.4609699Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/8b113e86-6857-4b54-bc49-05e0d7df9616?api-version=2016-12-01 + response: + body: + string: '{"id":"8b113e86-6857-4b54-bc49-05e0d7df9616","name":"8b113e86-6857-4b54-bc49-05e0d7df9616","status":"InProgress","startTime":"2019-07-08T08:09:06.4609699Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/8b113e86-6857-4b54-bc49-05e0d7df9616?api-version=2016-12-01 + response: + body: + string: '{"id":"8b113e86-6857-4b54-bc49-05e0d7df9616","name":"8b113e86-6857-4b54-bc49-05e0d7df9616","status":"InProgress","startTime":"2019-07-08T08:09:06.4609699Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/8b113e86-6857-4b54-bc49-05e0d7df9616?api-version=2016-12-01 + response: + body: + string: '{"id":"8b113e86-6857-4b54-bc49-05e0d7df9616","name":"8b113e86-6857-4b54-bc49-05e0d7df9616","status":"InProgress","startTime":"2019-07-08T08:09:06.4609699Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/8b113e86-6857-4b54-bc49-05e0d7df9616?api-version=2016-12-01 + response: + body: + string: '{"id":"8b113e86-6857-4b54-bc49-05e0d7df9616","name":"8b113e86-6857-4b54-bc49-05e0d7df9616","status":"InProgress","startTime":"2019-07-08T08:09:06.4609699Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/8b113e86-6857-4b54-bc49-05e0d7df9616?api-version=2016-12-01 + response: + body: + string: '{"id":"8b113e86-6857-4b54-bc49-05e0d7df9616","name":"8b113e86-6857-4b54-bc49-05e0d7df9616","status":"InProgress","startTime":"2019-07-08T08:09:06.4609699Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/8b113e86-6857-4b54-bc49-05e0d7df9616?api-version=2016-12-01 + response: + body: + string: '{"id":"8b113e86-6857-4b54-bc49-05e0d7df9616","name":"8b113e86-6857-4b54-bc49-05e0d7df9616","status":"InProgress","startTime":"2019-07-08T08:09:06.4609699Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/8b113e86-6857-4b54-bc49-05e0d7df9616?api-version=2016-12-01 + response: + body: + string: '{"id":"8b113e86-6857-4b54-bc49-05e0d7df9616","name":"8b113e86-6857-4b54-bc49-05e0d7df9616","status":"InProgress","startTime":"2019-07-08T08:09:06.4609699Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/8b113e86-6857-4b54-bc49-05e0d7df9616?api-version=2016-12-01 + response: + body: + string: '{"id":"8b113e86-6857-4b54-bc49-05e0d7df9616","name":"8b113e86-6857-4b54-bc49-05e0d7df9616","status":"InProgress","startTime":"2019-07-08T08:09:06.4609699Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/8b113e86-6857-4b54-bc49-05e0d7df9616?api-version=2016-12-01 + response: + body: + string: '{"id":"8b113e86-6857-4b54-bc49-05e0d7df9616","name":"8b113e86-6857-4b54-bc49-05e0d7df9616","status":"InProgress","startTime":"2019-07-08T08:09:06.4609699Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/8b113e86-6857-4b54-bc49-05e0d7df9616?api-version=2016-12-01 + response: + body: + string: '{"id":"8b113e86-6857-4b54-bc49-05e0d7df9616","name":"8b113e86-6857-4b54-bc49-05e0d7df9616","status":"InProgress","startTime":"2019-07-08T08:09:06.4609699Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/8b113e86-6857-4b54-bc49-05e0d7df9616?api-version=2016-12-01 + response: + body: + string: '{"id":"8b113e86-6857-4b54-bc49-05e0d7df9616","name":"8b113e86-6857-4b54-bc49-05e0d7df9616","status":"InProgress","startTime":"2019-07-08T08:09:06.4609699Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/8b113e86-6857-4b54-bc49-05e0d7df9616?api-version=2016-12-01 + response: + body: + string: '{"id":"8b113e86-6857-4b54-bc49-05e0d7df9616","name":"8b113e86-6857-4b54-bc49-05e0d7df9616","status":"InProgress","startTime":"2019-07-08T08:09:06.4609699Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/8b113e86-6857-4b54-bc49-05e0d7df9616?api-version=2016-12-01 + response: + body: + string: '{"id":"8b113e86-6857-4b54-bc49-05e0d7df9616","name":"8b113e86-6857-4b54-bc49-05e0d7df9616","status":"InProgress","startTime":"2019-07-08T08:09:06.4609699Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/8b113e86-6857-4b54-bc49-05e0d7df9616?api-version=2016-12-01 + response: + body: + string: '{"id":"8b113e86-6857-4b54-bc49-05e0d7df9616","name":"8b113e86-6857-4b54-bc49-05e0d7df9616","status":"InProgress","startTime":"2019-07-08T08:09:06.4609699Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/8b113e86-6857-4b54-bc49-05e0d7df9616?api-version=2016-12-01 + response: + body: + string: '{"id":"8b113e86-6857-4b54-bc49-05e0d7df9616","name":"8b113e86-6857-4b54-bc49-05e0d7df9616","status":"InProgress","startTime":"2019-07-08T08:09:06.4609699Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/8b113e86-6857-4b54-bc49-05e0d7df9616?api-version=2016-12-01 + response: + body: + string: '{"id":"8b113e86-6857-4b54-bc49-05e0d7df9616","name":"8b113e86-6857-4b54-bc49-05e0d7df9616","status":"InProgress","startTime":"2019-07-08T08:09:06.4609699Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/8b113e86-6857-4b54-bc49-05e0d7df9616?api-version=2016-12-01 + response: + body: + string: '{"id":"8b113e86-6857-4b54-bc49-05e0d7df9616","name":"8b113e86-6857-4b54-bc49-05e0d7df9616","status":"InProgress","startTime":"2019-07-08T08:09:06.4609699Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/8b113e86-6857-4b54-bc49-05e0d7df9616?api-version=2016-12-01 + response: + body: + string: '{"id":"8b113e86-6857-4b54-bc49-05e0d7df9616","name":"8b113e86-6857-4b54-bc49-05e0d7df9616","status":"InProgress","startTime":"2019-07-08T08:09:06.4609699Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/8b113e86-6857-4b54-bc49-05e0d7df9616?api-version=2016-12-01 + response: + body: + string: '{"id":"8b113e86-6857-4b54-bc49-05e0d7df9616","name":"8b113e86-6857-4b54-bc49-05e0d7df9616","status":"InProgress","startTime":"2019-07-08T08:09:06.4609699Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/8b113e86-6857-4b54-bc49-05e0d7df9616?api-version=2016-12-01 + response: + body: + string: '{"id":"8b113e86-6857-4b54-bc49-05e0d7df9616","name":"8b113e86-6857-4b54-bc49-05e0d7df9616","status":"InProgress","startTime":"2019-07-08T08:09:06.4609699Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/8b113e86-6857-4b54-bc49-05e0d7df9616?api-version=2016-12-01 + response: + body: + string: '{"id":"8b113e86-6857-4b54-bc49-05e0d7df9616","name":"8b113e86-6857-4b54-bc49-05e0d7df9616","status":"InProgress","startTime":"2019-07-08T08:09:06.4609699Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/8b113e86-6857-4b54-bc49-05e0d7df9616?api-version=2016-12-01 + response: + body: + string: '{"id":"8b113e86-6857-4b54-bc49-05e0d7df9616","name":"8b113e86-6857-4b54-bc49-05e0d7df9616","status":"InProgress","startTime":"2019-07-08T08:09:06.4609699Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/8b113e86-6857-4b54-bc49-05e0d7df9616?api-version=2016-12-01 + response: + body: + string: '{"id":"8b113e86-6857-4b54-bc49-05e0d7df9616","name":"8b113e86-6857-4b54-bc49-05e0d7df9616","status":"Succeeded","startTime":"2019-07-08T08:09:06.4609699Z","endTime":"2019-07-08T08:09:06.4609699Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"8f17212c-202d-4614-b6bb-dac33c0e0c61"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/8f17212c-202d-4614-b6bb-dac33c0e0c61?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/8f17212c-202d-4614-b6bb-dac33c0e0c61","name":"8f17212c-202d-4614-b6bb-dac33c0e0c61","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT32.0765647S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"h22","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2019-07-08T08:09:06.4609699Z","endTime":"2019-07-08T08:09:38.5375346Z","activityId":"a7b9cb64-a157-11e9-9aa9-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '695' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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 08:09:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperationResults/31171ea1-2481-49af-bbb0-6ca32b71772a?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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:09: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:10: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/31171ea1-2481-49af-bbb0-6ca32b71772a?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/31171ea1-2481-49af-bbb0-6ca32b71772a?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 08:10:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup 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 08:10: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 +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..123d50136d9 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_protection.yaml @@ -0,0 +1,11884 @@ +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 06:25: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: '{"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 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:25: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/029bcbda-935d-41e2-a294-b59a824f6b65?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/029bcbda-935d-41e2-a294-b59a824f6b65?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-08T06:25:15.3573962Z","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 06: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 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-08T06:25:15.3573962Z","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 06: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 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/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":5,"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;h221","name":"saphanadatabase;h22;h221","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":"H221","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;h222","name":"saphanadatabase;h22;h222","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":"H222","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;h22_restored_07_04_2019_1241","name":"saphanadatabase;h22;h22_restored_07_04_2019_1241","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_07_04_2019_1241","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: + - '8963' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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: 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/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: + - Mon, 08 Jul 2019 06: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": {"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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/saphanadatabase%3Bh22%3Bh22?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/operationsStatus/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 08 Jul 2019 06:26:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;idcdemo;hanademoidc3/protectedItems/saphanadatabase;h22;h22/operationResults/a654ff09-7939-41a8-ab6e-d6c5e469af41?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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:26: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"InProgress","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/a654ff09-7939-41a8-ab6e-d6c5e469af41?api-version=2016-12-01 + response: + body: + string: '{"id":"a654ff09-7939-41a8-ab6e-d6c5e469af41","name":"a654ff09-7939-41a8-ab6e-d6c5e469af41","status":"Succeeded","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"2019-07-08T06:26:39.3164085Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f16b8ee1-2819-455e-a554-340df32c7f4a"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f16b8ee1-2819-455e-a554-340df32c7f4a?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f16b8ee1-2819-455e-a554-340df32c7f4a","name":"f16b8ee1-2819-455e-a554-340df32c7f4a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M14.6426315S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"HourlyLogBackup"}},"entityFriendlyName":"h22","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2019-07-08T06:26:39.3164085Z","endTime":"2019-07-08T06:27:53.95904Z","activityId":"5766a3d4-a149-11e9-9a4e-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '725' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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 --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/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-08T06:25:15.3573962Z","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 06: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: '{"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 -b -r -e + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 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/protectedItems/SAPHanaDatabase%3Bh22%3Bh22/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/operationsStatus/f06fcce7-51d8-4731-886b-be560e6c7918?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 08 Jul 2019 06:27:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;IDCDemo;HANADemoIDC3/protectedItems/SAPHanaDatabase;h22;h22/operationResults/f06fcce7-51d8-4731-886b-be560e6c7918?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 -b -r -e + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/f06fcce7-51d8-4731-886b-be560e6c7918?api-version=2016-12-01 + response: + body: + string: '{"id":"f06fcce7-51d8-4731-886b-be560e6c7918","name":"f06fcce7-51d8-4731-886b-be560e6c7918","status":"InProgress","startTime":"2019-07-08T06:27:55.8309814Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 backup-now + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -b -r -e + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/f06fcce7-51d8-4731-886b-be560e6c7918?api-version=2016-12-01 + response: + body: + string: '{"id":"f06fcce7-51d8-4731-886b-be560e6c7918","name":"f06fcce7-51d8-4731-886b-be560e6c7918","status":"Succeeded","startTime":"2019-07-08T06:27:55.8309814Z","endTime":"2019-07-08T06:27:55.8309814Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"e4b89f19-99a2-4a5e-9853-246adfc6d88d"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 backup-now + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -b -r -e + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/e4b89f19-99a2-4a5e-9853-246adfc6d88d?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/e4b89f19-99a2-4a5e-9853-246adfc6d88d","name":"e4b89f19-99a2-4a5e-9853-246adfc6d88d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2.2768624S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22 + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-08T06:27:55.8309814Z","activityId":"8551d85e-a149-11e9-8845-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '738' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/e4b89f19-99a2-4a5e-9853-246adfc6d88d?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/e4b89f19-99a2-4a5e-9853-246adfc6d88d","name":"e4b89f19-99a2-4a5e-9853-246adfc6d88d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2.7299918S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22 + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-08T06:27:55.8309814Z","activityId":"8551d85e-a149-11e9-8845-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '738' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/e4b89f19-99a2-4a5e-9853-246adfc6d88d?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/e4b89f19-99a2-4a5e-9853-246adfc6d88d","name":"e4b89f19-99a2-4a5e-9853-246adfc6d88d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3.0190458S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22 + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-08T06:27:55.8309814Z","activityId":"8551d85e-a149-11e9-8845-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '738' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:27:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/e4b89f19-99a2-4a5e-9853-246adfc6d88d?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/e4b89f19-99a2-4a5e-9853-246adfc6d88d","name":"e4b89f19-99a2-4a5e-9853-246adfc6d88d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT33.3311607S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22 + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-08T06:27:55.8309814Z","activityId":"8551d85e-a149-11e9-8845-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '739' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -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/backupJobs/e4b89f19-99a2-4a5e-9853-246adfc6d88d?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/e4b89f19-99a2-4a5e-9853-246adfc6d88d","name":"e4b89f19-99a2-4a5e-9853-246adfc6d88d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M3.6210258S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22 + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-08T06:27:55.8309814Z","activityId":"8551d85e-a149-11e9-8845-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:28: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/e4b89f19-99a2-4a5e-9853-246adfc6d88d?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/e4b89f19-99a2-4a5e-9853-246adfc6d88d","name":"e4b89f19-99a2-4a5e-9853-246adfc6d88d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M34.2774318S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22 + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-08T06:27:55.8309814Z","activityId":"8551d85e-a149-11e9-8845-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '741' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:29:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/e4b89f19-99a2-4a5e-9853-246adfc6d88d?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/e4b89f19-99a2-4a5e-9853-246adfc6d88d","name":"e4b89f19-99a2-4a5e-9853-246adfc6d88d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M6.1778701S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22 + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-08T06:27:55.8309814Z","activityId":"8551d85e-a149-11e9-8845-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:30:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/e4b89f19-99a2-4a5e-9853-246adfc6d88d?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/e4b89f19-99a2-4a5e-9853-246adfc6d88d","name":"e4b89f19-99a2-4a5e-9853-246adfc6d88d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M36.5469354S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22 + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-08T06:27:55.8309814Z","activityId":"8551d85e-a149-11e9-8845-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '741' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:30:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/e4b89f19-99a2-4a5e-9853-246adfc6d88d?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/e4b89f19-99a2-4a5e-9853-246adfc6d88d","name":"e4b89f19-99a2-4a5e-9853-246adfc6d88d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M6.8511107S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22 + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-08T06:27:55.8309814Z","activityId":"8551d85e-a149-11e9-8845-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:31: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/e4b89f19-99a2-4a5e-9853-246adfc6d88d?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/e4b89f19-99a2-4a5e-9853-246adfc6d88d","name":"e4b89f19-99a2-4a5e-9853-246adfc6d88d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M37.1716169S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22 + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-08T06:27:55.8309814Z","activityId":"8551d85e-a149-11e9-8845-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '741' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:31:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/e4b89f19-99a2-4a5e-9853-246adfc6d88d?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/e4b89f19-99a2-4a5e-9853-246adfc6d88d","name":"e4b89f19-99a2-4a5e-9853-246adfc6d88d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4M3.5141321S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"Completed"}],"propertyBag":{"Data Transferred (in + MB)":"1680.3164"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup + (Full)","status":"Completed","startTime":"2019-07-08T06:27:55.8309814Z","endTime":"2019-07-08T06:31:59.3451135Z","activityId":"8551d85e-a149-11e9-8845-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '824' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:32: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 item show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -b -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/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/SAPHanaDatabase%3BH22%3Bh22?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","name":"SAPHanaDatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-07-08T06:29:51.8324757Z","protectedItemDataSourceId":"250634197","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-07-08T06:27:48.816Z","recoveryPointCount":1,"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-07-08T06:27:48.816Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1410' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:32: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": {"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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 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/protectedItems/SAPHanaDatabase%3Bh22%3Bh22?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/operationsStatus/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 08 Jul 2019 06:32: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/protectedItems/SAPHanaDatabase;h22;h22/operationResults/2c2e7968-3281-4d21-86ba-b28a8fb469a6?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 disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"InProgress","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:32: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 disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"InProgress","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:32: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 -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"InProgress","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:32: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 -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"InProgress","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:32: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 -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"InProgress","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:32: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 -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"InProgress","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:32: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 -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"InProgress","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:32: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 -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"InProgress","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:32: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"InProgress","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:32: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 -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"InProgress","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:32: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"InProgress","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:32: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"InProgress","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:32: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 -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"InProgress","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:32: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 -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"InProgress","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:32: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"InProgress","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:32: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"InProgress","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:32: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"InProgress","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:32: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"InProgress","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:32: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"InProgress","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:32: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"InProgress","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"InProgress","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"InProgress","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"InProgress","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"InProgress","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"InProgress","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/2c2e7968-3281-4d21-86ba-b28a8fb469a6?api-version=2016-12-01 + response: + body: + string: '{"id":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","name":"2c2e7968-3281-4d21-86ba-b28a8fb469a6","status":"Succeeded","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"2019-07-08T06:32:35.1755789Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c99fe003-5b72-47a1-a45b-6be24a142ba8"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/c99fe003-5b72-47a1-a45b-6be24a142ba8?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/c99fe003-5b72-47a1-a45b-6be24a142ba8","name":"c99fe003-5b72-47a1-a45b-6be24a142ba8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT33.0717128S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"h22","backupManagementType":"AzureWorkload","operation":"DisableBackup","status":"Completed","startTime":"2019-07-08T06:32:35.1755789Z","endTime":"2019-07-08T06:33:08.2472917Z","activityId":"2bd27fc2-a14a-11e9-a8dc-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '692' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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 item show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -b -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/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/SAPHanaDatabase%3BH22%3Bh22?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","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-07-08T06:29:51.8324757Z","protectedItemDataSourceId":"250634197","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-07-08T06:27:48.816Z","recoveryPointCount":1,"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-07-08T06:27:48.816Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1242' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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 + 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer%3Bcompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22?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/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 08 Jul 2019 06:33:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperationResults/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + response: + body: + string: '{"id":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","name":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","status":"InProgress","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + response: + body: + string: '{"id":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","name":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","status":"InProgress","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + response: + body: + string: '{"id":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","name":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","status":"InProgress","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + response: + body: + string: '{"id":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","name":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","status":"InProgress","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + response: + body: + string: '{"id":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","name":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","status":"InProgress","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + response: + body: + string: '{"id":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","name":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","status":"InProgress","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + response: + body: + string: '{"id":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","name":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","status":"InProgress","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + response: + body: + string: '{"id":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","name":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","status":"InProgress","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + response: + body: + string: '{"id":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","name":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","status":"InProgress","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + response: + body: + string: '{"id":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","name":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","status":"InProgress","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + response: + body: + string: '{"id":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","name":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","status":"InProgress","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + response: + body: + string: '{"id":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","name":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","status":"InProgress","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + response: + body: + string: '{"id":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","name":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","status":"InProgress","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + response: + body: + string: '{"id":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","name":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","status":"InProgress","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + response: + body: + string: '{"id":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","name":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","status":"InProgress","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + response: + body: + string: '{"id":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","name":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","status":"InProgress","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + response: + body: + string: '{"id":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","name":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","status":"InProgress","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + response: + body: + string: '{"id":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","name":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","status":"InProgress","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + response: + body: + string: '{"id":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","name":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","status":"InProgress","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + response: + body: + string: '{"id":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","name":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","status":"InProgress","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + response: + body: + string: '{"id":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","name":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","status":"InProgress","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + response: + body: + string: '{"id":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","name":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","status":"InProgress","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + response: + body: + string: '{"id":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","name":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","status":"InProgress","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + response: + body: + string: '{"id":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","name":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","status":"InProgress","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/3f0cbae6-5f27-42fb-96c4-0770e39cdfa3?api-version=2016-12-01 + response: + body: + string: '{"id":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","name":"3f0cbae6-5f27-42fb-96c4-0770e39cdfa3","status":"Succeeded","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"2019-07-08T06:33:10.7345315Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c78fd619-3c6d-4928-a685-9fe9100a8e5f"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/c78fd619-3c6d-4928-a685-9fe9100a8e5f?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/c78fd619-3c6d-4928-a685-9fe9100a8e5f","name":"c78fd619-3c6d-4928-a685-9fe9100a8e5f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT32.5705184S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"h22","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2019-07-08T06:33:10.7345315Z","endTime":"2019-07-08T06:33:43.3050499Z","activityId":"411a6bd2-a14a-11e9-8d41-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '695' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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 06:33:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperationResults/8b016870-fd4a-4579-9822-9f084a81ccbc?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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:33: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:34: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:34: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:34: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:34: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:34: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:34: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:34: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:34: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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/8b016870-fd4a-4579-9822-9f084a81ccbc?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/8b016870-fd4a-4579-9822-9f084a81ccbc?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 06:34:30 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 06:34: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 +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..357e0f8a741 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_restore.yaml @@ -0,0 +1,13964 @@ +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: + - Tue, 09 Jul 2019 08:53: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: '{"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: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:53: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:54: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:54: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:54: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:54: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:54: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:54: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:54: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:54: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:54: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:54: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:54: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:54: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:54: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:54: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:54: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:54: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:54: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/96d877dc-462a-471c-afad-40a823b7142c?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/96d877dc-462a-471c-afad-40a823b7142c?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-09T08:53:16.0065572Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":3,"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: + - Tue, 09 Jul 2019 08:54: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 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-09T08:53:16.0065572Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":3,"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: + - Tue, 09 Jul 2019 08:54: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 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/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":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;h22_restored_07_09_2019_1404","name":"saphanadatabase;h22;h22_restored_07_09_2019_1404","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_07_09_2019_1404","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: + - '7479' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08: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 -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/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: + - Tue, 09 Jul 2019 08: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: '{"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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/saphanadatabase%3Bh22%3Bh22?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/operationsStatus/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 09 Jul 2019 08:54: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/protectedItems/saphanadatabase;h22;h22/operationResults/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:54:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:54:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:54:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:54: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:54:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:54: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:54: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:54: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08: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: 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08: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 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"InProgress","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/c37ab40c-e776-4a8d-bec4-68f8d3bd594a?api-version=2016-12-01 + response: + body: + string: '{"id":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","name":"c37ab40c-e776-4a8d-bec4-68f8d3bd594a","status":"Succeeded","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"2019-07-09T08:54:28.2503496Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"641fd16e-4ca9-4c72-ae42-b2fc87981e26"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/641fd16e-4ca9-4c72-ae42-b2fc87981e26?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/641fd16e-4ca9-4c72-ae42-b2fc87981e26","name":"641fd16e-4ca9-4c72-ae42-b2fc87981e26","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M13.5650824S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"HourlyLogBackup"}},"entityFriendlyName":"h22","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2019-07-09T08:54:28.2503496Z","endTime":"2019-07-09T08:55:41.815432Z","activityId":"27edce1c-a227-11e9-b81a-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '726' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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 --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/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-09T08:53:16.0065572Z","extendedInfo":{"hostServerName":"HANADemoIDC3","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SAPHana","itemCount":3,"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: + - Tue, 09 Jul 2019 08:55: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: '{"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 -b -r -e + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 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/protectedItems/SAPHanaDatabase%3Bh22%3Bh22/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/operationsStatus/edfe55c6-8938-40a3-8fb5-2c1b6825fbdd?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 09 Jul 2019 08:55: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/protectedItems/SAPHanaDatabase;h22;h22/operationResults/edfe55c6-8938-40a3-8fb5-2c1b6825fbdd?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 -b -r -e + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/edfe55c6-8938-40a3-8fb5-2c1b6825fbdd?api-version=2016-12-01 + response: + body: + string: '{"id":"edfe55c6-8938-40a3-8fb5-2c1b6825fbdd","name":"edfe55c6-8938-40a3-8fb5-2c1b6825fbdd","status":"InProgress","startTime":"2019-07-09T08:55:44.689881Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55: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 backup-now + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -b -r -e + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/edfe55c6-8938-40a3-8fb5-2c1b6825fbdd?api-version=2016-12-01 + response: + body: + string: '{"id":"edfe55c6-8938-40a3-8fb5-2c1b6825fbdd","name":"edfe55c6-8938-40a3-8fb5-2c1b6825fbdd","status":"Succeeded","startTime":"2019-07-09T08:55:44.689881Z","endTime":"2019-07-09T08:55:44.689881Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"5422e3f7-b640-4ea1-adf8-cfdb6741499d"}}' + headers: + cache-control: + - no-cache + content-length: + - '302' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55: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 backup-now + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -b -r -e + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/5422e3f7-b640-4ea1-adf8-cfdb6741499d?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/5422e3f7-b640-4ea1-adf8-cfdb6741499d","name":"5422e3f7-b640-4ea1-adf8-cfdb6741499d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2.1434942S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22 + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-09T08:55:44.689881Z","activityId":"55fe045e-a227-11e9-aa1f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '737' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/5422e3f7-b640-4ea1-adf8-cfdb6741499d?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/5422e3f7-b640-4ea1-adf8-cfdb6741499d","name":"5422e3f7-b640-4ea1-adf8-cfdb6741499d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2.5966336S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22 + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-09T08:55:44.689881Z","activityId":"55fe045e-a227-11e9-aa1f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '737' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/5422e3f7-b640-4ea1-adf8-cfdb6741499d?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/5422e3f7-b640-4ea1-adf8-cfdb6741499d","name":"5422e3f7-b640-4ea1-adf8-cfdb6741499d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2.9681559S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22 + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-09T08:55:44.689881Z","activityId":"55fe045e-a227-11e9-aa1f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '737' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:55:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/5422e3f7-b640-4ea1-adf8-cfdb6741499d?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/5422e3f7-b640-4ea1-adf8-cfdb6741499d","name":"5422e3f7-b640-4ea1-adf8-cfdb6741499d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT33.5258556S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22 + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-09T08:55:44.689881Z","activityId":"55fe045e-a227-11e9-aa1f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '738' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:56:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/5422e3f7-b640-4ea1-adf8-cfdb6741499d?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/5422e3f7-b640-4ea1-adf8-cfdb6741499d","name":"5422e3f7-b640-4ea1-adf8-cfdb6741499d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M3.8923286S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22 + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-09T08:55:44.689881Z","activityId":"55fe045e-a227-11e9-aa1f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '739' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/5422e3f7-b640-4ea1-adf8-cfdb6741499d?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/5422e3f7-b640-4ea1-adf8-cfdb6741499d","name":"5422e3f7-b640-4ea1-adf8-cfdb6741499d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M34.3004171S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22 + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-09T08:55:44.689881Z","activityId":"55fe045e-a227-11e9-aa1f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/5422e3f7-b640-4ea1-adf8-cfdb6741499d?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/5422e3f7-b640-4ea1-adf8-cfdb6741499d","name":"5422e3f7-b640-4ea1-adf8-cfdb6741499d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M4.6141834S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22 + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-09T08:55:44.689881Z","activityId":"55fe045e-a227-11e9-aa1f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '739' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/5422e3f7-b640-4ea1-adf8-cfdb6741499d?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/5422e3f7-b640-4ea1-adf8-cfdb6741499d","name":"5422e3f7-b640-4ea1-adf8-cfdb6741499d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M35.0053759S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22 + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-09T08:55:44.689881Z","activityId":"55fe045e-a227-11e9-aa1f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '740' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:58: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/5422e3f7-b640-4ea1-adf8-cfdb6741499d?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/5422e3f7-b640-4ea1-adf8-cfdb6741499d","name":"5422e3f7-b640-4ea1-adf8-cfdb6741499d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M5.3908334S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22 + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-09T08:55:44.689881Z","activityId":"55fe045e-a227-11e9-aa1f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '739' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:58: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/5422e3f7-b640-4ea1-adf8-cfdb6741499d?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/5422e3f7-b640-4ea1-adf8-cfdb6741499d","name":"5422e3f7-b640-4ea1-adf8-cfdb6741499d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M35.769275S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"H22/H22 + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-09T08:55:44.689881Z","activityId":"55fe045e-a227-11e9-aa1f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '739' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:59: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/5422e3f7-b640-4ea1-adf8-cfdb6741499d?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/5422e3f7-b640-4ea1-adf8-cfdb6741499d","name":"5422e3f7-b640-4ea1-adf8-cfdb6741499d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4M3.7916978S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"Completed"}],"propertyBag":{"Data Transferred (in + MB)":"1696.3359"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Backup + (Full)","status":"Completed","startTime":"2019-07-09T08:55:44.689881Z","endTime":"2019-07-09T08:59:48.4815788Z","activityId":"55fe045e-a227-11e9-aa1f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '823' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 08:59: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 item show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -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/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/SAPHanaDatabase%3BH22%3Bh22?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","name":"SAPHanaDatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-07-09T08:57:50.819489Z","protectedItemDataSourceId":"684894098","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-07-09T08:55:40.334Z","recoveryPointCount":1,"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-07-09T08:55:40.334Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1409' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:00:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/SAPHanaDatabase%3BH22%3Bh22?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","name":"SAPHanaDatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-07-09T08:57:50.819489Z","protectedItemDataSourceId":"684894098","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-07-09T08:55:40.334Z","recoveryPointCount":1,"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-07-09T08:55:40.334Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1409' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22/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/recoveryPoints/72337459394547","name":"72337459394547","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2019-07-09T08:55:40.334Z","type":"Full"}},{"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/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaPointInTimeRecoveryPoint","timeRanges":[],"type":"Log"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1121' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 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/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":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_restored_07_09_2019_1404","name":"saphanadatabase;h22;h22_restored_07_09_2019_1404","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_07_09_2019_1404","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: + - '6740' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:00:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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: + - -v -g -m -r -i -c -t + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/protectedItems/SAPHanaDatabase%3BH22%3Bh22?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","name":"SAPHanaDatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-07-09T08:57:50.819489Z","protectedItemDataSourceId":"684894098","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-07-09T08:55:40.334Z","recoveryPointCount":1,"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-07-09T08:55:40.334Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1409' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:00:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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: + - -v -g -m -r -i -c -t + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/protectedItems/SAPHanaDatabase%3BH22%3Bh22?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","name":"SAPHanaDatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-07-09T08:57:50.819489Z","protectedItemDataSourceId":"684894098","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-07-09T08:55:40.334Z","recoveryPointCount":1,"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-07-09T08:55:40.334Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1409' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:00:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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: + - -v -g -m -r -i -c -t + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/protectedItems/SAPHanaDatabase%3Bh22%3Bh22/recoveryPoints/72337459394547?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/recoveryPoints/72337459394547","name":"72337459394547","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2019-07-09T08:55:40.334Z","type":"Full"}}' + headers: + cache-control: + - no-cache + content-length: + - '556' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:00:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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_07_09_2019_1430"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + Content-Length: + - '595' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -v -g -r + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 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/protectedItems/SAPHanaDatabase%3BH22%3Bh22/recoveryPoints/72337459394547/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/operationsStatus/834d1457-acf2-4164-b3bf-c60a182f32cd?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 09 Jul 2019 09:00: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/protectedItems/SAPHanaDatabase;H22;h22/operationResults/834d1457-acf2-4164-b3bf-c60a182f32cd?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 restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -r + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/834d1457-acf2-4164-b3bf-c60a182f32cd?api-version=2016-12-01 + response: + body: + string: '{"id":"834d1457-acf2-4164-b3bf-c60a182f32cd","name":"834d1457-acf2-4164-b3bf-c60a182f32cd","status":"Succeeded","startTime":"2019-07-09T09:00:27.0110742Z","endTime":"2019-07-09T09:00:27.0110742Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"7d2eaa2c-6900-44e6-b506-7051df159bb3"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:00:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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: + - -v -g -r + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3","name":"7d2eaa2c-6900-44e6-b506-7051df159bb3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1.5353699S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:00:27.0110742Z","activityId":"fe3f64b8-a227-11e9-ae9f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '787' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -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/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3","name":"7d2eaa2c-6900-44e6-b506-7051df159bb3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2.0618125S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:00:27.0110742Z","activityId":"fe3f64b8-a227-11e9-ae9f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '787' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:00: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3","name":"7d2eaa2c-6900-44e6-b506-7051df159bb3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2.3743496S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:00:27.0110742Z","activityId":"fe3f64b8-a227-11e9-ae9f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '787' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:00:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3","name":"7d2eaa2c-6900-44e6-b506-7051df159bb3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT32.7191671S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:00:27.0110742Z","activityId":"fe3f64b8-a227-11e9-ae9f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '788' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:00: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3","name":"7d2eaa2c-6900-44e6-b506-7051df159bb3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M3.0925896S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:00:27.0110742Z","activityId":"fe3f64b8-a227-11e9-ae9f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '789' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:01:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3","name":"7d2eaa2c-6900-44e6-b506-7051df159bb3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M33.4268912S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:00:27.0110742Z","activityId":"fe3f64b8-a227-11e9-ae9f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '790' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:01:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -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/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3","name":"7d2eaa2c-6900-44e6-b506-7051df159bb3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M3.9762753S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:00:27.0110742Z","activityId":"fe3f64b8-a227-11e9-ae9f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '789' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:02: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3","name":"7d2eaa2c-6900-44e6-b506-7051df159bb3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M36.1279377S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:00:27.0110742Z","activityId":"fe3f64b8-a227-11e9-ae9f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '790' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:03:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3","name":"7d2eaa2c-6900-44e6-b506-7051df159bb3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M6.5688815S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:00:27.0110742Z","activityId":"fe3f64b8-a227-11e9-ae9f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '789' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:03: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3","name":"7d2eaa2c-6900-44e6-b506-7051df159bb3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M37.0005074S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:00:27.0110742Z","activityId":"fe3f64b8-a227-11e9-ae9f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '790' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:04:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3","name":"7d2eaa2c-6900-44e6-b506-7051df159bb3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4M7.3868404S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:00:27.0110742Z","activityId":"fe3f64b8-a227-11e9-ae9f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '789' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:04: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3","name":"7d2eaa2c-6900-44e6-b506-7051df159bb3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4M37.8546654S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:00:27.0110742Z","activityId":"fe3f64b8-a227-11e9-ae9f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '790' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:05:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3","name":"7d2eaa2c-6900-44e6-b506-7051df159bb3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT5M8.2511594S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:00:27.0110742Z","activityId":"fe3f64b8-a227-11e9-ae9f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '789' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:05: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3","name":"7d2eaa2c-6900-44e6-b506-7051df159bb3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT5M38.7698729S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:00:27.0110742Z","activityId":"fe3f64b8-a227-11e9-ae9f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '790' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:06:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3","name":"7d2eaa2c-6900-44e6-b506-7051df159bb3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT6M9.4101594S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:00:27.0110742Z","activityId":"fe3f64b8-a227-11e9-ae9f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '789' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -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/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3","name":"7d2eaa2c-6900-44e6-b506-7051df159bb3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT6M39.8551422S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:00:27.0110742Z","activityId":"fe3f64b8-a227-11e9-ae9f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '790' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:07: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 job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -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/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3","name":"7d2eaa2c-6900-44e6-b506-7051df159bb3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT7M10.5297828S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:00:27.0110742Z","activityId":"fe3f64b8-a227-11e9-ae9f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '790' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:07: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3","name":"7d2eaa2c-6900-44e6-b506-7051df159bb3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT7M40.9292037S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:00:27.0110742Z","activityId":"fe3f64b8-a227-11e9-ae9f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '790' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:08:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -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/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3","name":"7d2eaa2c-6900-44e6-b506-7051df159bb3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT8M11.3116062S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:00:27.0110742Z","activityId":"fe3f64b8-a227-11e9-ae9f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '790' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:08:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3","name":"7d2eaa2c-6900-44e6-b506-7051df159bb3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT8M41.6858232S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:00:27.0110742Z","activityId":"fe3f64b8-a227-11e9-ae9f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '790' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:09: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/7d2eaa2c-6900-44e6-b506-7051df159bb3","name":"7d2eaa2c-6900-44e6-b506-7051df159bb3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT9M6.6602751S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"Completed"}],"propertyBag":{"Data Transferred (in + MB)":"1696.3359","Job Type":"Recovery to an alternate database","RestoreDestination":"HANADemoIDC3/H22/h22_restored_07_09_2019_1430"}},"entityFriendlyName":"H22/H22 + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore + (Full)","status":"Completed","startTime":"2019-07-09T09:00:27.0110742Z","endTime":"2019-07-09T09:09:33.6713493Z","activityId":"fe3f64b8-a227-11e9-ae9f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '943' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:09:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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: + - -v -g -m -i -c -r + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/protectedItems/SAPHanaDatabase%3BH22%3Bh22?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","name":"SAPHanaDatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-07-09T08:57:50.819489Z","protectedItemDataSourceId":"684894098","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-07-09T08:55:40.334Z","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/HourlyLogBackup","lastRecoveryPoint":"2019-07-09T08:59:21.419Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1409' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:10:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - -v -g -m -i -c -r + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/protectedItems/SAPHanaDatabase%3BH22%3Bh22?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","name":"SAPHanaDatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-07-09T08:57:50.819489Z","protectedItemDataSourceId":"684894098","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-07-09T08:55:40.334Z","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/HourlyLogBackup","lastRecoveryPoint":"2019-07-09T08:59:21.419Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1409' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:10:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - -v -g -m -i -c -r + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/protectedItems/SAPHanaDatabase%3Bh22%3Bh22/recoveryPoints/72337459394547?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/recoveryPoints/72337459394547","name":"72337459394547","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaRecoveryPoint","recoveryPointTimeInUTC":"2019-07-09T08:55:40.334Z","type":"Full"}}' + headers: + cache-control: + - no-cache + content-length: + - '556' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:10:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"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: + - -v -g -r + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 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/protectedItems/SAPHanaDatabase%3BH22%3Bh22/recoveryPoints/72337459394547/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/operationsStatus/baef9a96-289e-4ed7-8e61-a056d212cecf?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 09 Jul 2019 09:10: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/protectedItems/SAPHanaDatabase;H22;h22/operationResults/baef9a96-289e-4ed7-8e61-a056d212cecf?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: + - -v -g -r + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/baef9a96-289e-4ed7-8e61-a056d212cecf?api-version=2016-12-01 + response: + body: + string: '{"id":"baef9a96-289e-4ed7-8e61-a056d212cecf","name":"baef9a96-289e-4ed7-8e61-a056d212cecf","status":"InProgress","startTime":"2019-07-09T09:10:12.6001391Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:10:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -r + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/baef9a96-289e-4ed7-8e61-a056d212cecf?api-version=2016-12-01 + response: + body: + string: '{"id":"baef9a96-289e-4ed7-8e61-a056d212cecf","name":"baef9a96-289e-4ed7-8e61-a056d212cecf","status":"Succeeded","startTime":"2019-07-09T09:10:12.6001391Z","endTime":"2019-07-09T09:10:12.6001391Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c5ece073-9232-4582-a164-f8fe766b6b2e"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:10: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 restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -r + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e","name":"c5ece073-9232-4582-a164-f8fe766b6b2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2.8047998S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:10:12.6001391Z","activityId":"5b36c19e-a229-11e9-964f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '787' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:10: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e","name":"c5ece073-9232-4582-a164-f8fe766b6b2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3.5513687S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:10:12.6001391Z","activityId":"5b36c19e-a229-11e9-964f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '787' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:10: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e","name":"c5ece073-9232-4582-a164-f8fe766b6b2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3.9315589S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:10:12.6001391Z","activityId":"5b36c19e-a229-11e9-964f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '787' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:10: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e","name":"c5ece073-9232-4582-a164-f8fe766b6b2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT34.3249621S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:10:12.6001391Z","activityId":"5b36c19e-a229-11e9-964f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '788' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:10:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -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/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e","name":"c5ece073-9232-4582-a164-f8fe766b6b2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M4.7510725S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:10:12.6001391Z","activityId":"5b36c19e-a229-11e9-964f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '789' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:11: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e","name":"c5ece073-9232-4582-a164-f8fe766b6b2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M35.1468499S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:10:12.6001391Z","activityId":"5b36c19e-a229-11e9-964f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '790' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:11: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e","name":"c5ece073-9232-4582-a164-f8fe766b6b2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M5.6252982S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:10:12.6001391Z","activityId":"5b36c19e-a229-11e9-964f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '789' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:12: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e","name":"c5ece073-9232-4582-a164-f8fe766b6b2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT2M36.2097797S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:10:12.6001391Z","activityId":"5b36c19e-a229-11e9-964f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '790' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:12: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e","name":"c5ece073-9232-4582-a164-f8fe766b6b2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M6.8162558S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:10:12.6001391Z","activityId":"5b36c19e-a229-11e9-964f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '789' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:13: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e","name":"c5ece073-9232-4582-a164-f8fe766b6b2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT3M37.237471S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:10:12.6001391Z","activityId":"5b36c19e-a229-11e9-964f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '789' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:13:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e","name":"c5ece073-9232-4582-a164-f8fe766b6b2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4M7.6522059S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:10:12.6001391Z","activityId":"5b36c19e-a229-11e9-964f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '789' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:14:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e","name":"c5ece073-9232-4582-a164-f8fe766b6b2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT4M38.1186619S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:10:12.6001391Z","activityId":"5b36c19e-a229-11e9-964f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '790' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:14: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e","name":"c5ece073-9232-4582-a164-f8fe766b6b2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT5M8.9892669S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:10:12.6001391Z","activityId":"5b36c19e-a229-11e9-964f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '789' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:15: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e","name":"c5ece073-9232-4582-a164-f8fe766b6b2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT5M39.8547267S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"H22/H22 [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:10:12.6001391Z","activityId":"5b36c19e-a229-11e9-964f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '790' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:15:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/c5ece073-9232-4582-a164-f8fe766b6b2e","name":"c5ece073-9232-4582-a164-f8fe766b6b2e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT6M4.8204643S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"Completed"}],"propertyBag":{"Data Transferred (in + MB)":"1696.3359","Job Type":"Recovery to the original database","RestoreDestination":"HANADemoIDC3/H22/H22"}},"entityFriendlyName":"H22/H22 + [HANADemoIDC3]","backupManagementType":"AzureWorkload","operation":"Restore + (Full)","status":"Completed","startTime":"2019-07-09T09:10:12.6001391Z","endTime":"2019-07-09T09:16:17.4206034Z","activityId":"5b36c19e-a229-11e9-964f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '918' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:16:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 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/protectedItems/SAPHanaDatabase%3Bh22%3Bh22?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/operationsStatus/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 09 Jul 2019 09:16: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/operationResults/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?api-version=2016-12-01 + response: + body: + string: '{"id":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","name":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","status":"InProgress","startTime":"2019-07-09T09:16:54.1179567Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:16: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?api-version=2016-12-01 + response: + body: + string: '{"id":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","name":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","status":"InProgress","startTime":"2019-07-09T09:16:54.1179567Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:16:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?api-version=2016-12-01 + response: + body: + string: '{"id":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","name":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","status":"InProgress","startTime":"2019-07-09T09:16:54.1179567Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:16: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?api-version=2016-12-01 + response: + body: + string: '{"id":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","name":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","status":"InProgress","startTime":"2019-07-09T09:16:54.1179567Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:16: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?api-version=2016-12-01 + response: + body: + string: '{"id":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","name":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","status":"InProgress","startTime":"2019-07-09T09:16:54.1179567Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?api-version=2016-12-01 + response: + body: + string: '{"id":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","name":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","status":"InProgress","startTime":"2019-07-09T09:16:54.1179567Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?api-version=2016-12-01 + response: + body: + string: '{"id":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","name":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","status":"InProgress","startTime":"2019-07-09T09:16:54.1179567Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?api-version=2016-12-01 + response: + body: + string: '{"id":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","name":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","status":"InProgress","startTime":"2019-07-09T09:16:54.1179567Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?api-version=2016-12-01 + response: + body: + string: '{"id":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","name":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","status":"InProgress","startTime":"2019-07-09T09:16:54.1179567Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?api-version=2016-12-01 + response: + body: + string: '{"id":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","name":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","status":"InProgress","startTime":"2019-07-09T09:16:54.1179567Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?api-version=2016-12-01 + response: + body: + string: '{"id":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","name":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","status":"InProgress","startTime":"2019-07-09T09:16:54.1179567Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?api-version=2016-12-01 + response: + body: + string: '{"id":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","name":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","status":"InProgress","startTime":"2019-07-09T09:16:54.1179567Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?api-version=2016-12-01 + response: + body: + string: '{"id":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","name":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","status":"InProgress","startTime":"2019-07-09T09:16:54.1179567Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?api-version=2016-12-01 + response: + body: + string: '{"id":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","name":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","status":"InProgress","startTime":"2019-07-09T09:16:54.1179567Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?api-version=2016-12-01 + response: + body: + string: '{"id":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","name":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","status":"InProgress","startTime":"2019-07-09T09:16:54.1179567Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?api-version=2016-12-01 + response: + body: + string: '{"id":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","name":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","status":"InProgress","startTime":"2019-07-09T09:16:54.1179567Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?api-version=2016-12-01 + response: + body: + string: '{"id":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","name":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","status":"InProgress","startTime":"2019-07-09T09:16:54.1179567Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?api-version=2016-12-01 + response: + body: + string: '{"id":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","name":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","status":"InProgress","startTime":"2019-07-09T09:16:54.1179567Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?api-version=2016-12-01 + response: + body: + string: '{"id":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","name":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","status":"InProgress","startTime":"2019-07-09T09:16:54.1179567Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?api-version=2016-12-01 + response: + body: + string: '{"id":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","name":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","status":"InProgress","startTime":"2019-07-09T09:16:54.1179567Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?api-version=2016-12-01 + response: + body: + string: '{"id":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","name":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","status":"InProgress","startTime":"2019-07-09T09:16:54.1179567Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?api-version=2016-12-01 + response: + body: + string: '{"id":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","name":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","status":"InProgress","startTime":"2019-07-09T09:16:54.1179567Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?api-version=2016-12-01 + response: + body: + string: '{"id":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","name":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","status":"InProgress","startTime":"2019-07-09T09:16:54.1179567Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupOperations/a6a5a69a-86bf-4e57-902d-7ffbd709e1de?api-version=2016-12-01 + response: + body: + string: '{"id":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","name":"a6a5a69a-86bf-4e57-902d-7ffbd709e1de","status":"Succeeded","startTime":"2019-07-09T09:16:54.1179567Z","endTime":"2019-07-09T09:16:54.1179567Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"1eb0c39b-3479-48f5-a02f-ef0be9b9b869"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/backupJobs/1eb0c39b-3479-48f5-a02f-ef0be9b9b869?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/1eb0c39b-3479-48f5-a02f-ef0be9b9b869","name":"1eb0c39b-3479-48f5-a02f-ef0be9b9b869","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT32.2314353S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"h22","backupManagementType":"AzureWorkload","operation":"DisableBackup","status":"Completed","startTime":"2019-07-09T09:16:54.1179567Z","endTime":"2019-07-09T09:17:26.349392Z","activityId":"4a47ad58-a22a-11e9-8c1f-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '691' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 -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/protectedItems/SAPHanaDatabase%3BH22%3Bh22?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","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":"Unhealthy","lastBackupTime":"2019-07-09T09:12:42.4905584Z","lastBackupErrorDetail":{"code":"OperationCancelledBecauseConflictingOperationRunningUserError","message":"Operation + cancelled as a conflicting operation was already running on the same database.","recommendations":["Please + try again after some time."]},"protectedItemDataSourceId":"684894098","protectedItemHealthStatus":"Unhealthy","extendedInfo":{"oldestRecoveryPoint":"2019-07-09T08:55:40.334Z","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","lastRecoveryPoint":"2019-07-09T08:59:21.419Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1500' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer%3Bcompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22?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/0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 09 Jul 2019 09:17:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperationResults/0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0?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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0?api-version=2016-12-01 + response: + body: + string: '{"id":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","name":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","status":"InProgress","startTime":"2019-07-09T09:17:29.7395263Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0?api-version=2016-12-01 + response: + body: + string: '{"id":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","name":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","status":"InProgress","startTime":"2019-07-09T09:17:29.7395263Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0?api-version=2016-12-01 + response: + body: + string: '{"id":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","name":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","status":"InProgress","startTime":"2019-07-09T09:17:29.7395263Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0?api-version=2016-12-01 + response: + body: + string: '{"id":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","name":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","status":"InProgress","startTime":"2019-07-09T09:17:29.7395263Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0?api-version=2016-12-01 + response: + body: + string: '{"id":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","name":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","status":"InProgress","startTime":"2019-07-09T09:17:29.7395263Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0?api-version=2016-12-01 + response: + body: + string: '{"id":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","name":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","status":"InProgress","startTime":"2019-07-09T09:17:29.7395263Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0?api-version=2016-12-01 + response: + body: + string: '{"id":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","name":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","status":"InProgress","startTime":"2019-07-09T09:17:29.7395263Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 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 +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0?api-version=2016-12-01 + response: + body: + string: '{"id":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","name":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","status":"InProgress","startTime":"2019-07-09T09:17:29.7395263Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0?api-version=2016-12-01 + response: + body: + string: '{"id":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","name":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","status":"InProgress","startTime":"2019-07-09T09:17:29.7395263Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0?api-version=2016-12-01 + response: + body: + string: '{"id":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","name":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","status":"InProgress","startTime":"2019-07-09T09:17:29.7395263Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0?api-version=2016-12-01 + response: + body: + string: '{"id":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","name":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","status":"InProgress","startTime":"2019-07-09T09:17:29.7395263Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0?api-version=2016-12-01 + response: + body: + string: '{"id":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","name":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","status":"InProgress","startTime":"2019-07-09T09:17:29.7395263Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0?api-version=2016-12-01 + response: + body: + string: '{"id":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","name":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","status":"InProgress","startTime":"2019-07-09T09:17:29.7395263Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0?api-version=2016-12-01 + response: + body: + string: '{"id":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","name":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","status":"InProgress","startTime":"2019-07-09T09:17:29.7395263Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0?api-version=2016-12-01 + response: + body: + string: '{"id":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","name":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","status":"InProgress","startTime":"2019-07-09T09:17:29.7395263Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0?api-version=2016-12-01 + response: + body: + string: '{"id":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","name":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","status":"InProgress","startTime":"2019-07-09T09:17:29.7395263Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0?api-version=2016-12-01 + response: + body: + string: '{"id":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","name":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","status":"InProgress","startTime":"2019-07-09T09:17:29.7395263Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0?api-version=2016-12-01 + response: + body: + string: '{"id":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","name":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","status":"InProgress","startTime":"2019-07-09T09:17:29.7395263Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0?api-version=2016-12-01 + response: + body: + string: '{"id":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","name":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","status":"InProgress","startTime":"2019-07-09T09:17:29.7395263Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0?api-version=2016-12-01 + response: + body: + string: '{"id":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","name":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","status":"InProgress","startTime":"2019-07-09T09:17:29.7395263Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0?api-version=2016-12-01 + response: + body: + string: '{"id":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","name":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","status":"InProgress","startTime":"2019-07-09T09:17:29.7395263Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:17: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0?api-version=2016-12-01 + response: + body: + string: '{"id":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","name":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","status":"InProgress","startTime":"2019-07-09T09:17:29.7395263Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0?api-version=2016-12-01 + response: + body: + string: '{"id":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","name":"0c0a489c-cc5a-47ef-8ec0-d3b1cdb59af0","status":"Succeeded","startTime":"2019-07-09T09:17:29.7395263Z","endTime":"2019-07-09T09:17:29.7395263Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f31c4228-46f7-460f-92c8-baf993c53f8e"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f31c4228-46f7-460f-92c8-baf993c53f8e?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/f31c4228-46f7-460f-92c8-baf993c53f8e","name":"f31c4228-46f7-460f-92c8-baf993c53f8e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT32.4745694S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"h22","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2019-07-09T09:17:29.7395263Z","endTime":"2019-07-09T09:18:02.2140957Z","activityId":"5fc338cc-a22a-11e9-8381-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '695' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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 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: + - Tue, 09 Jul 2019 09:18:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperationResults/bf6f28bd-7b01-49a6-83ab-de394eea692b?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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:18: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/bf6f28bd-7b01-49a6-83ab-de394eea692b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/bf6f28bd-7b01-49a6-83ab-de394eea692b?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 09:18:50 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup 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: + - Tue, 09 Jul 2019 09:18: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 +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..b17591c8646 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_hana_rp.yaml @@ -0,0 +1,9560 @@ +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:12: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": {"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:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:12: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/73bb3438-9285-4e62-abb9-9d88183f206b?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/73bb3438-9285-4e62-abb9-9d88183f206b?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:12:15.5413354Z","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:13: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:12:15.5413354Z","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:13: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 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/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":5,"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;h221","name":"saphanadatabase;h22;h221","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":"H221","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;h222","name":"saphanadatabase;h22;h222","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":"H222","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;h22_restored_07_04_2019_1241","name":"saphanadatabase;h22;h22_restored_07_04_2019_1241","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_07_04_2019_1241","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: + - '8963' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/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: + - Mon, 08 Jul 2019 05:13: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: '{"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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/saphanadatabase%3Bh22%3Bh22?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/operationsStatus/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 08 Jul 2019 05:13: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/protectedItems/saphanadatabase;h22;h22/operationResults/61ce3bb9-a6d7-44df-ac04-986da1e8e241?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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:13: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"InProgress","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/61ce3bb9-a6d7-44df-ac04-986da1e8e241?api-version=2016-12-01 + response: + body: + string: '{"id":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","name":"61ce3bb9-a6d7-44df-ac04-986da1e8e241","status":"Succeeded","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"2019-07-08T05:13:32.6806048Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"234279cf-7433-43fc-b579-9bb2ca8d9753"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/234279cf-7433-43fc-b579-9bb2ca8d9753?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/234279cf-7433-43fc-b579-9bb2ca8d9753","name":"234279cf-7433-43fc-b579-9bb2ca8d9753","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT1M14.2144269S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"HourlyLogBackup"}},"entityFriendlyName":"h22","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2019-07-08T05:13:32.6806048Z","endTime":"2019-07-08T05:14:46.8950317Z","activityId":"209260cc-a13f-11e9-a9e8-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '727' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/SAPHanaDatabase%3BH22%3Bh22?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","name":"SAPHanaDatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"1347393161","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: + - '1327' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22/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/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaPointInTimeRecoveryPoint","timeRanges":[],"type":"Log"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '564' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/SAPHanaDatabase%3BH22%3Bh22?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","name":"SAPHanaDatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"1347393161","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: + - '1327' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22/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/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaPointInTimeRecoveryPoint","timeRanges":[],"type":"Log"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '564' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/SAPHanaDatabase%3BH22%3Bh22?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","name":"SAPHanaDatabase;h22;h22","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"friendlyName":"h22","serverName":"HANADemoIDC3","parentName":"H22","parentType":"AzureVmWorkloadSAPHanaSystem","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"1347393161","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: + - '1327' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bidcdemo%3Bhanademoidc3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22/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/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSAPHanaPointInTimeRecoveryPoint","timeRanges":[],"type":"Log"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '564' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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 + 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer%3Bcompute%3BIDCDemo%3BHANADemoIDC3/protectedItems/SAPHanaDatabase%3Bh22%3Bh22?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/2730f796-7716-41ac-8f17-1ca6946f96d3?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 08 Jul 2019 05:14:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperationResults/2730f796-7716-41ac-8f17-1ca6946f96d3?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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2730f796-7716-41ac-8f17-1ca6946f96d3?api-version=2016-12-01 + response: + body: + string: '{"id":"2730f796-7716-41ac-8f17-1ca6946f96d3","name":"2730f796-7716-41ac-8f17-1ca6946f96d3","status":"InProgress","startTime":"2019-07-08T05:14:53.4589911Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2730f796-7716-41ac-8f17-1ca6946f96d3?api-version=2016-12-01 + response: + body: + string: '{"id":"2730f796-7716-41ac-8f17-1ca6946f96d3","name":"2730f796-7716-41ac-8f17-1ca6946f96d3","status":"InProgress","startTime":"2019-07-08T05:14:53.4589911Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2730f796-7716-41ac-8f17-1ca6946f96d3?api-version=2016-12-01 + response: + body: + string: '{"id":"2730f796-7716-41ac-8f17-1ca6946f96d3","name":"2730f796-7716-41ac-8f17-1ca6946f96d3","status":"InProgress","startTime":"2019-07-08T05:14:53.4589911Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2730f796-7716-41ac-8f17-1ca6946f96d3?api-version=2016-12-01 + response: + body: + string: '{"id":"2730f796-7716-41ac-8f17-1ca6946f96d3","name":"2730f796-7716-41ac-8f17-1ca6946f96d3","status":"InProgress","startTime":"2019-07-08T05:14:53.4589911Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2730f796-7716-41ac-8f17-1ca6946f96d3?api-version=2016-12-01 + response: + body: + string: '{"id":"2730f796-7716-41ac-8f17-1ca6946f96d3","name":"2730f796-7716-41ac-8f17-1ca6946f96d3","status":"InProgress","startTime":"2019-07-08T05:14:53.4589911Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:14: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2730f796-7716-41ac-8f17-1ca6946f96d3?api-version=2016-12-01 + response: + body: + string: '{"id":"2730f796-7716-41ac-8f17-1ca6946f96d3","name":"2730f796-7716-41ac-8f17-1ca6946f96d3","status":"InProgress","startTime":"2019-07-08T05:14:53.4589911Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2730f796-7716-41ac-8f17-1ca6946f96d3?api-version=2016-12-01 + response: + body: + string: '{"id":"2730f796-7716-41ac-8f17-1ca6946f96d3","name":"2730f796-7716-41ac-8f17-1ca6946f96d3","status":"InProgress","startTime":"2019-07-08T05:14:53.4589911Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2730f796-7716-41ac-8f17-1ca6946f96d3?api-version=2016-12-01 + response: + body: + string: '{"id":"2730f796-7716-41ac-8f17-1ca6946f96d3","name":"2730f796-7716-41ac-8f17-1ca6946f96d3","status":"InProgress","startTime":"2019-07-08T05:14:53.4589911Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2730f796-7716-41ac-8f17-1ca6946f96d3?api-version=2016-12-01 + response: + body: + string: '{"id":"2730f796-7716-41ac-8f17-1ca6946f96d3","name":"2730f796-7716-41ac-8f17-1ca6946f96d3","status":"InProgress","startTime":"2019-07-08T05:14:53.4589911Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2730f796-7716-41ac-8f17-1ca6946f96d3?api-version=2016-12-01 + response: + body: + string: '{"id":"2730f796-7716-41ac-8f17-1ca6946f96d3","name":"2730f796-7716-41ac-8f17-1ca6946f96d3","status":"InProgress","startTime":"2019-07-08T05:14:53.4589911Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2730f796-7716-41ac-8f17-1ca6946f96d3?api-version=2016-12-01 + response: + body: + string: '{"id":"2730f796-7716-41ac-8f17-1ca6946f96d3","name":"2730f796-7716-41ac-8f17-1ca6946f96d3","status":"InProgress","startTime":"2019-07-08T05:14:53.4589911Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2730f796-7716-41ac-8f17-1ca6946f96d3?api-version=2016-12-01 + response: + body: + string: '{"id":"2730f796-7716-41ac-8f17-1ca6946f96d3","name":"2730f796-7716-41ac-8f17-1ca6946f96d3","status":"InProgress","startTime":"2019-07-08T05:14:53.4589911Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2730f796-7716-41ac-8f17-1ca6946f96d3?api-version=2016-12-01 + response: + body: + string: '{"id":"2730f796-7716-41ac-8f17-1ca6946f96d3","name":"2730f796-7716-41ac-8f17-1ca6946f96d3","status":"InProgress","startTime":"2019-07-08T05:14:53.4589911Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2730f796-7716-41ac-8f17-1ca6946f96d3?api-version=2016-12-01 + response: + body: + string: '{"id":"2730f796-7716-41ac-8f17-1ca6946f96d3","name":"2730f796-7716-41ac-8f17-1ca6946f96d3","status":"InProgress","startTime":"2019-07-08T05:14:53.4589911Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2730f796-7716-41ac-8f17-1ca6946f96d3?api-version=2016-12-01 + response: + body: + string: '{"id":"2730f796-7716-41ac-8f17-1ca6946f96d3","name":"2730f796-7716-41ac-8f17-1ca6946f96d3","status":"InProgress","startTime":"2019-07-08T05:14:53.4589911Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2730f796-7716-41ac-8f17-1ca6946f96d3?api-version=2016-12-01 + response: + body: + string: '{"id":"2730f796-7716-41ac-8f17-1ca6946f96d3","name":"2730f796-7716-41ac-8f17-1ca6946f96d3","status":"InProgress","startTime":"2019-07-08T05:14:53.4589911Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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 -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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2730f796-7716-41ac-8f17-1ca6946f96d3?api-version=2016-12-01 + response: + body: + string: '{"id":"2730f796-7716-41ac-8f17-1ca6946f96d3","name":"2730f796-7716-41ac-8f17-1ca6946f96d3","status":"InProgress","startTime":"2019-07-08T05:14:53.4589911Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2730f796-7716-41ac-8f17-1ca6946f96d3?api-version=2016-12-01 + response: + body: + string: '{"id":"2730f796-7716-41ac-8f17-1ca6946f96d3","name":"2730f796-7716-41ac-8f17-1ca6946f96d3","status":"InProgress","startTime":"2019-07-08T05:14:53.4589911Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2730f796-7716-41ac-8f17-1ca6946f96d3?api-version=2016-12-01 + response: + body: + string: '{"id":"2730f796-7716-41ac-8f17-1ca6946f96d3","name":"2730f796-7716-41ac-8f17-1ca6946f96d3","status":"InProgress","startTime":"2019-07-08T05:14:53.4589911Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2730f796-7716-41ac-8f17-1ca6946f96d3?api-version=2016-12-01 + response: + body: + string: '{"id":"2730f796-7716-41ac-8f17-1ca6946f96d3","name":"2730f796-7716-41ac-8f17-1ca6946f96d3","status":"InProgress","startTime":"2019-07-08T05:14:53.4589911Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2730f796-7716-41ac-8f17-1ca6946f96d3?api-version=2016-12-01 + response: + body: + string: '{"id":"2730f796-7716-41ac-8f17-1ca6946f96d3","name":"2730f796-7716-41ac-8f17-1ca6946f96d3","status":"InProgress","startTime":"2019-07-08T05:14:53.4589911Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2730f796-7716-41ac-8f17-1ca6946f96d3?api-version=2016-12-01 + response: + body: + string: '{"id":"2730f796-7716-41ac-8f17-1ca6946f96d3","name":"2730f796-7716-41ac-8f17-1ca6946f96d3","status":"InProgress","startTime":"2019-07-08T05:14:53.4589911Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2730f796-7716-41ac-8f17-1ca6946f96d3?api-version=2016-12-01 + response: + body: + string: '{"id":"2730f796-7716-41ac-8f17-1ca6946f96d3","name":"2730f796-7716-41ac-8f17-1ca6946f96d3","status":"InProgress","startTime":"2019-07-08T05:14:53.4589911Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperations/2730f796-7716-41ac-8f17-1ca6946f96d3?api-version=2016-12-01 + response: + body: + string: '{"id":"2730f796-7716-41ac-8f17-1ca6946f96d3","name":"2730f796-7716-41ac-8f17-1ca6946f96d3","status":"Succeeded","startTime":"2019-07-08T05:14:53.4589911Z","endTime":"2019-07-08T05:14:53.4589911Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"586f2bc3-9af7-4cbf-82b5-a22d55c39d34"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/586f2bc3-9af7-4cbf-82b5-a22d55c39d34?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupJobs/586f2bc3-9af7-4cbf-82b5-a22d55c39d34","name":"586f2bc3-9af7-4cbf-82b5-a22d55c39d34","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SAPHanaDatabase","duration":"PT32.1252822S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"h22","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2019-07-08T05:14:53.4589911Z","endTime":"2019-07-08T05:15:25.5842733Z","activityId":"514ce658-a13f-11e9-a854-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '695' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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 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:15:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupOperationResults/e4839dfa-8897-48f3-862c-5eb7dc9a643d?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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15: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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:15:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:16: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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:16: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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:16:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:16:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:16:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:16:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:16: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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:16: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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:16:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;IDCDemo;HANADemoIDC3/operationResults/e4839dfa-8897-48f3-862c-5eb7dc9a643d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-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/e4839dfa-8897-48f3-862c-5eb7dc9a643d?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:16:13 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:16: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 +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..305138560ff --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_item.yaml @@ -0,0 +1,20137 @@ +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 08: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: '{"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 08:11: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:11: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:11: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:11: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:11: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:11: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:11: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:11: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:11: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:12: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:12: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:12: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:12: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:12: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:12: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:12: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:12: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:12: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:12: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:12: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:12: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:12: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:12: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:12: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:12: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:12: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:12: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:12: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:13: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:13: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:13: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:13: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:13: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:13: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:13: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:13: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:13: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:13: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:13: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:13: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:13: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/58f58688-91a3-467d-b965-92f0ba3de6c0?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/58f58688-91a3-467d-b965-92f0ba3de6c0?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-08T08:11:55.0844173Z","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 08:14: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 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-08T08:11:55.0844173Z","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 08:14: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 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 08:14: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 -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 08:14: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", "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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 08 Jul 2019 08:14: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/protectedItems/sqldatabase;mssqlserver;testdb1/operationResults/35de8aee-31a6-4426-8365-515fff201447?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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/backupOperations/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:14: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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15: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 -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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15: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 -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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15: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 -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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15: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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15: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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15: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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15: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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15: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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15: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 -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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15: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 -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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15: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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15: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 -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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15: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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15: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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15: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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15: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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15: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 -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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15: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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15: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: + - -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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15: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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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 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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08: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 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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15: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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15: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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15: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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:15:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"InProgress","startTime":"2019-07-08T08:14:53.600374Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/35de8aee-31a6-4426-8365-515fff201447?api-version=2016-12-01 + response: + body: + string: '{"id":"35de8aee-31a6-4426-8365-515fff201447","name":"35de8aee-31a6-4426-8365-515fff201447","status":"Succeeded","startTime":"2019-07-08T08:14:53.600374Z","endTime":"2019-07-08T08:14:53.600374Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"b972f93d-b28a-4ddc-816b-d3451230f4b0"}}' + headers: + cache-control: + - no-cache + content-length: + - '302' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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/backupJobs/b972f93d-b28a-4ddc-816b-d3451230f4b0?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/b972f93d-b28a-4ddc-816b-d3451230f4b0","name":"b972f93d-b28a-4ddc-816b-d3451230f4b0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M15.8236849S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"HourlyLogBackup"}},"entityFriendlyName":"testdb1","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2019-07-08T08:14:53.600374Z","endTime":"2019-07-08T08:16:09.4240589Z","activityId":"76574ff6-a158-11e9-8bfe-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '738' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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 --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?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-08T08:11:55.0844173Z","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 08:16: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 -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/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":"52777118934675","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 08:16: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 container show + Connection: + - keep-alive + ParameterSetName: + - -n -v -g -b --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?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-08T08:11:55.0844173Z","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 08:16: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 show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -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/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":"52777118934675","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 08:16: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 show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -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/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":"52777118934675","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 08:16: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 list + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -b -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/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/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":"52777118934675","protectedItemHealthStatus":"IRPending","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: + - '1354' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 list + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -b -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/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/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":"52777118934675","protectedItemHealthStatus":"IRPending","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: + - '1354' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 list + Connection: + - keep-alive + ParameterSetName: + - -g -v -b -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/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/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":"52777118934675","protectedItemHealthStatus":"IRPending","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: + - '1354' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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":1}}' + headers: + cache-control: + - no-cache + content-length: + - '1076' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/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":"52777118934675","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 08:16: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: '{"properties": {"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", + "protectedItemType": "AzureVmWorkloadSQLDatabase", "friendlyName": "testdb1", + "serverName": "pstestwlvm1bca8", "parentName": "MSSQLSERVER", "parentType": + "AzureVmWorkloadSQLInstance", "protectionStatus": "Healthy", "protectionState": + "IRPending", "lastBackupStatus": "IRPending", "lastBackupErrorDetail": {"code": + "Success", "message": ""}, "protectedItemDataSourceId": "52777118934675", "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: + - '1021' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -c -n -p -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: 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/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 08 Jul 2019 08: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/protectedItems/SQLDataBase;mssqlserver;testdb1/operationResults/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:16: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 item set-policy + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -p -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"InProgress","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/backupOperations/67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d?api-version=2016-12-01 + response: + body: + string: '{"id":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","name":"67ebb02d-1c9b-4d21-a284-be2a7ff2cc3d","status":"Succeeded","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"2019-07-08T08:16:17.0495065Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"45d5ae1d-da8c-4ff3-b969-481c6cf8d684"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/backupJobs/45d5ae1d-da8c-4ff3-b969-481c6cf8d684?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/45d5ae1d-da8c-4ff3-b969-481c6cf8d684","name":"45d5ae1d-da8c-4ff3-b969-481c6cf8d684","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M13.1529711S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"HourlyLogBackup"}},"entityFriendlyName":"testdb1","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2019-07-08T08:16:17.0495065Z","endTime":"2019-07-08T08:17:30.2024776Z","activityId":"a7855da2-a158-11e9-a8c4-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '739' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 item show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -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/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","lastBackupTime":"2019-07-08T08:15:08.662686Z","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":"52777118934675","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: + - '1656' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.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/92a60540-7334-470a-bd3e-cbb1cd649b29?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 08 Jul 2019 08:17:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperationResults/92a60540-7334-470a-bd3e-cbb1cd649b29?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/92a60540-7334-470a-bd3e-cbb1cd649b29?api-version=2016-12-01 + response: + body: + string: '{"id":"92a60540-7334-470a-bd3e-cbb1cd649b29","name":"92a60540-7334-470a-bd3e-cbb1cd649b29","status":"InProgress","startTime":"2019-07-08T08:17:33.4357621Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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/92a60540-7334-470a-bd3e-cbb1cd649b29?api-version=2016-12-01 + response: + body: + string: '{"id":"92a60540-7334-470a-bd3e-cbb1cd649b29","name":"92a60540-7334-470a-bd3e-cbb1cd649b29","status":"InProgress","startTime":"2019-07-08T08:17:33.4357621Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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/92a60540-7334-470a-bd3e-cbb1cd649b29?api-version=2016-12-01 + response: + body: + string: '{"id":"92a60540-7334-470a-bd3e-cbb1cd649b29","name":"92a60540-7334-470a-bd3e-cbb1cd649b29","status":"InProgress","startTime":"2019-07-08T08:17:33.4357621Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/92a60540-7334-470a-bd3e-cbb1cd649b29?api-version=2016-12-01 + response: + body: + string: '{"id":"92a60540-7334-470a-bd3e-cbb1cd649b29","name":"92a60540-7334-470a-bd3e-cbb1cd649b29","status":"InProgress","startTime":"2019-07-08T08:17:33.4357621Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/92a60540-7334-470a-bd3e-cbb1cd649b29?api-version=2016-12-01 + response: + body: + string: '{"id":"92a60540-7334-470a-bd3e-cbb1cd649b29","name":"92a60540-7334-470a-bd3e-cbb1cd649b29","status":"InProgress","startTime":"2019-07-08T08:17:33.4357621Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/92a60540-7334-470a-bd3e-cbb1cd649b29?api-version=2016-12-01 + response: + body: + string: '{"id":"92a60540-7334-470a-bd3e-cbb1cd649b29","name":"92a60540-7334-470a-bd3e-cbb1cd649b29","status":"InProgress","startTime":"2019-07-08T08:17:33.4357621Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/92a60540-7334-470a-bd3e-cbb1cd649b29?api-version=2016-12-01 + response: + body: + string: '{"id":"92a60540-7334-470a-bd3e-cbb1cd649b29","name":"92a60540-7334-470a-bd3e-cbb1cd649b29","status":"InProgress","startTime":"2019-07-08T08:17:33.4357621Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/92a60540-7334-470a-bd3e-cbb1cd649b29?api-version=2016-12-01 + response: + body: + string: '{"id":"92a60540-7334-470a-bd3e-cbb1cd649b29","name":"92a60540-7334-470a-bd3e-cbb1cd649b29","status":"InProgress","startTime":"2019-07-08T08:17:33.4357621Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/92a60540-7334-470a-bd3e-cbb1cd649b29?api-version=2016-12-01 + response: + body: + string: '{"id":"92a60540-7334-470a-bd3e-cbb1cd649b29","name":"92a60540-7334-470a-bd3e-cbb1cd649b29","status":"InProgress","startTime":"2019-07-08T08:17:33.4357621Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/92a60540-7334-470a-bd3e-cbb1cd649b29?api-version=2016-12-01 + response: + body: + string: '{"id":"92a60540-7334-470a-bd3e-cbb1cd649b29","name":"92a60540-7334-470a-bd3e-cbb1cd649b29","status":"InProgress","startTime":"2019-07-08T08:17:33.4357621Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/92a60540-7334-470a-bd3e-cbb1cd649b29?api-version=2016-12-01 + response: + body: + string: '{"id":"92a60540-7334-470a-bd3e-cbb1cd649b29","name":"92a60540-7334-470a-bd3e-cbb1cd649b29","status":"InProgress","startTime":"2019-07-08T08:17:33.4357621Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/92a60540-7334-470a-bd3e-cbb1cd649b29?api-version=2016-12-01 + response: + body: + string: '{"id":"92a60540-7334-470a-bd3e-cbb1cd649b29","name":"92a60540-7334-470a-bd3e-cbb1cd649b29","status":"InProgress","startTime":"2019-07-08T08:17:33.4357621Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/92a60540-7334-470a-bd3e-cbb1cd649b29?api-version=2016-12-01 + response: + body: + string: '{"id":"92a60540-7334-470a-bd3e-cbb1cd649b29","name":"92a60540-7334-470a-bd3e-cbb1cd649b29","status":"InProgress","startTime":"2019-07-08T08:17:33.4357621Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/92a60540-7334-470a-bd3e-cbb1cd649b29?api-version=2016-12-01 + response: + body: + string: '{"id":"92a60540-7334-470a-bd3e-cbb1cd649b29","name":"92a60540-7334-470a-bd3e-cbb1cd649b29","status":"InProgress","startTime":"2019-07-08T08:17:33.4357621Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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/92a60540-7334-470a-bd3e-cbb1cd649b29?api-version=2016-12-01 + response: + body: + string: '{"id":"92a60540-7334-470a-bd3e-cbb1cd649b29","name":"92a60540-7334-470a-bd3e-cbb1cd649b29","status":"InProgress","startTime":"2019-07-08T08:17:33.4357621Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/92a60540-7334-470a-bd3e-cbb1cd649b29?api-version=2016-12-01 + response: + body: + string: '{"id":"92a60540-7334-470a-bd3e-cbb1cd649b29","name":"92a60540-7334-470a-bd3e-cbb1cd649b29","status":"InProgress","startTime":"2019-07-08T08:17:33.4357621Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/92a60540-7334-470a-bd3e-cbb1cd649b29?api-version=2016-12-01 + response: + body: + string: '{"id":"92a60540-7334-470a-bd3e-cbb1cd649b29","name":"92a60540-7334-470a-bd3e-cbb1cd649b29","status":"InProgress","startTime":"2019-07-08T08:17:33.4357621Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/92a60540-7334-470a-bd3e-cbb1cd649b29?api-version=2016-12-01 + response: + body: + string: '{"id":"92a60540-7334-470a-bd3e-cbb1cd649b29","name":"92a60540-7334-470a-bd3e-cbb1cd649b29","status":"InProgress","startTime":"2019-07-08T08:17:33.4357621Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/92a60540-7334-470a-bd3e-cbb1cd649b29?api-version=2016-12-01 + response: + body: + string: '{"id":"92a60540-7334-470a-bd3e-cbb1cd649b29","name":"92a60540-7334-470a-bd3e-cbb1cd649b29","status":"InProgress","startTime":"2019-07-08T08:17:33.4357621Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/92a60540-7334-470a-bd3e-cbb1cd649b29?api-version=2016-12-01 + response: + body: + string: '{"id":"92a60540-7334-470a-bd3e-cbb1cd649b29","name":"92a60540-7334-470a-bd3e-cbb1cd649b29","status":"InProgress","startTime":"2019-07-08T08:17:33.4357621Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:17: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 -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/92a60540-7334-470a-bd3e-cbb1cd649b29?api-version=2016-12-01 + response: + body: + string: '{"id":"92a60540-7334-470a-bd3e-cbb1cd649b29","name":"92a60540-7334-470a-bd3e-cbb1cd649b29","status":"InProgress","startTime":"2019-07-08T08:17:33.4357621Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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 -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/92a60540-7334-470a-bd3e-cbb1cd649b29?api-version=2016-12-01 + response: + body: + string: '{"id":"92a60540-7334-470a-bd3e-cbb1cd649b29","name":"92a60540-7334-470a-bd3e-cbb1cd649b29","status":"InProgress","startTime":"2019-07-08T08:17:33.4357621Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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 -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/92a60540-7334-470a-bd3e-cbb1cd649b29?api-version=2016-12-01 + response: + body: + string: '{"id":"92a60540-7334-470a-bd3e-cbb1cd649b29","name":"92a60540-7334-470a-bd3e-cbb1cd649b29","status":"InProgress","startTime":"2019-07-08T08:17:33.4357621Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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/92a60540-7334-470a-bd3e-cbb1cd649b29?api-version=2016-12-01 + response: + body: + string: '{"id":"92a60540-7334-470a-bd3e-cbb1cd649b29","name":"92a60540-7334-470a-bd3e-cbb1cd649b29","status":"Succeeded","startTime":"2019-07-08T08:17:33.4357621Z","endTime":"2019-07-08T08:17:33.4357621Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"6b3f65c3-3325-44f6-be3e-000fe7fca1ed"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/backupJobs/6b3f65c3-3325-44f6-be3e-000fe7fca1ed?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/6b3f65c3-3325-44f6-be3e-000fe7fca1ed","name":"6b3f65c3-3325-44f6-be3e-000fe7fca1ed","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT32.3057522S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"testdb1","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2019-07-08T08:17:33.4357621Z","endTime":"2019-07-08T08:18:05.7415143Z","activityId":"d5f3cbf4-a158-11e9-8fed-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '707' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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 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 08:18:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:18: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:19: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:20: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:20: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:20: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:20: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:20: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:20: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:20: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:20: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:20: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:20: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:20: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:20: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:20: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:20: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:20: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:20: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:20: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:20: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:20: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:20: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:20: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:20: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:20: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:20: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 08:20: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/66955693-2cba-4ae6-b5d0-7fc033c1ae73?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/66955693-2cba-4ae6-b5d0-7fc033c1ae73?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 08:20:36 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 08:20:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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..e419f3f2926 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_protection.yaml @@ -0,0 +1,17013 @@ +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 06:35: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: + - Mon, 08 Jul 2019 06:35: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:35: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:36: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:37: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38:15 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a476edc8-762b-4bb4-ad6f-f317a726fe15?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-08T06:36:05.9754435Z","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 06:38: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-08T06:36:05.9754435Z","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 06:38: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 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 06:38: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/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 06:38: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", "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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 08 Jul 2019 06:38: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/protectedItems/sqldatabase;mssqlserver;testdb1/operationResults/13354907-9ddc-471d-93b5-59f2725e9241?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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/backupOperations/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:38: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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 -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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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 -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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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 -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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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 -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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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 -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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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 -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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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 -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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"InProgress","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/13354907-9ddc-471d-93b5-59f2725e9241?api-version=2016-12-01 + response: + body: + string: '{"id":"13354907-9ddc-471d-93b5-59f2725e9241","name":"13354907-9ddc-471d-93b5-59f2725e9241","status":"Succeeded","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"2019-07-08T06:38:33.6005253Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"3669ffd7-627a-45ca-8abc-77d2002f17e7"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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/backupJobs/3669ffd7-627a-45ca-8abc-77d2002f17e7?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/3669ffd7-627a-45ca-8abc-77d2002f17e7","name":"3669ffd7-627a-45ca-8abc-77d2002f17e7","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M13.8198022S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"HourlyLogBackup"}},"entityFriendlyName":"testdb1","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2019-07-08T06:38:33.6005253Z","endTime":"2019-07-08T06:39:47.4203275Z","activityId":"00f2abe6-a14b-11e9-b264-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '739' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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 container show + Connection: + - keep-alive + ParameterSetName: + - -n -v -g -b --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?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-08T06:36:05.9754435Z","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 06:39: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: '{"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 -b -r -e + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 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/protectedItems/sqldatabase%3Bmssqlserver%3Btestdb1/backup?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - 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/d05ed077-d09b-4a71-8a65-85ea1f124568?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 08 Jul 2019 06:39:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/sqldatabase;mssqlserver;testdb1/operationResults/d05ed077-d09b-4a71-8a65-85ea1f124568?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 -b -r -e + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/d05ed077-d09b-4a71-8a65-85ea1f124568?api-version=2016-12-01 + response: + body: + string: '{"id":"d05ed077-d09b-4a71-8a65-85ea1f124568","name":"d05ed077-d09b-4a71-8a65-85ea1f124568","status":"Succeeded","startTime":"2019-07-08T06:39:49.9351242Z","endTime":"2019-07-08T06:39:49.9351242Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"82380184-405e-4985-938e-7947972a16a3"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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 backup-now + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -b -r -e + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/82380184-405e-4985-938e-7947972a16a3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/82380184-405e-4985-938e-7947972a16a3","name":"82380184-405e-4985-938e-7947972a16a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1.036759S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/testdb1 + [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-08T06:39:49.9351242Z","activityId":"2f0823dc-a14b-11e9-8c04-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '760' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/82380184-405e-4985-938e-7947972a16a3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/82380184-405e-4985-938e-7947972a16a3","name":"82380184-405e-4985-938e-7947972a16a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1.5164495S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/testdb1 + [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-08T06:39:49.9351242Z","activityId":"2f0823dc-a14b-11e9-8c04-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '761' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/82380184-405e-4985-938e-7947972a16a3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/82380184-405e-4985-938e-7947972a16a3","name":"82380184-405e-4985-938e-7947972a16a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1.8180078S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/testdb1 + [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-08T06:39:49.9351242Z","activityId":"2f0823dc-a14b-11e9-8c04-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '761' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:39:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/82380184-405e-4985-938e-7947972a16a3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/82380184-405e-4985-938e-7947972a16a3","name":"82380184-405e-4985-938e-7947972a16a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT32.1955002S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/testdb1 + [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-08T06:39:49.9351242Z","activityId":"2f0823dc-a14b-11e9-8c04-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '762' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:40: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 +- 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/82380184-405e-4985-938e-7947972a16a3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/82380184-405e-4985-938e-7947972a16a3","name":"82380184-405e-4985-938e-7947972a16a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M2.6567193S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/testdb1 + [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-08T06:39:49.9351242Z","activityId":"2f0823dc-a14b-11e9-8c04-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '763' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:40:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/82380184-405e-4985-938e-7947972a16a3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/82380184-405e-4985-938e-7947972a16a3","name":"82380184-405e-4985-938e-7947972a16a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M32.9940286S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/testdb1 + [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-08T06:39:49.9351242Z","activityId":"2f0823dc-a14b-11e9-8c04-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '764' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:41:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/82380184-405e-4985-938e-7947972a16a3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/82380184-405e-4985-938e-7947972a16a3","name":"82380184-405e-4985-938e-7947972a16a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M3.3812577S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/testdb1 + [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-08T06:39:49.9351242Z","activityId":"2f0823dc-a14b-11e9-8c04-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '763' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:41:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/82380184-405e-4985-938e-7947972a16a3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/82380184-405e-4985-938e-7947972a16a3","name":"82380184-405e-4985-938e-7947972a16a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M33.7578365S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/testdb1 + [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-08T06:39:49.9351242Z","activityId":"2f0823dc-a14b-11e9-8c04-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '764' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:42:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/82380184-405e-4985-938e-7947972a16a3?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/82380184-405e-4985-938e-7947972a16a3","name":"82380184-405e-4985-938e-7947972a16a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M3.1168521S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"Completed"}],"propertyBag":{"Data Transferred (in + MB)":"4.0825"}},"entityFriendlyName":"MSSQLSERVER/testdb1 [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Backup + (Full)","status":"Completed","startTime":"2019-07-08T06:39:49.9351242Z","endTime":"2019-07-08T06:42:53.0519763Z","activityId":"2f0823dc-a14b-11e9-8c04-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '844' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:42:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - 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 -b -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":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-07-08T06:41:27.1020576Z","protectedItemDataSourceId":"52776992323284","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-07-08T06:40:25Z","recoveryPointCount":1,"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","lastRecoveryPoint":"2019-07-08T06:40:25Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1485' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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: '{"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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 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/06e11d32-181d-444a-943c-328a04b76b69?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 08 Jul 2019 06:43: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/protectedItems/sqldatabase;mssqlserver;testdb1/operationResults/06e11d32-181d-444a-943c-328a04b76b69?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 disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/06e11d32-181d-444a-943c-328a04b76b69?api-version=2016-12-01 + response: + body: + string: '{"id":"06e11d32-181d-444a-943c-328a04b76b69","name":"06e11d32-181d-444a-943c-328a04b76b69","status":"InProgress","startTime":"2019-07-08T06:43:25.7942735Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/06e11d32-181d-444a-943c-328a04b76b69?api-version=2016-12-01 + response: + body: + string: '{"id":"06e11d32-181d-444a-943c-328a04b76b69","name":"06e11d32-181d-444a-943c-328a04b76b69","status":"InProgress","startTime":"2019-07-08T06:43:25.7942735Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:43: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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/06e11d32-181d-444a-943c-328a04b76b69?api-version=2016-12-01 + response: + body: + string: '{"id":"06e11d32-181d-444a-943c-328a04b76b69","name":"06e11d32-181d-444a-943c-328a04b76b69","status":"InProgress","startTime":"2019-07-08T06:43:25.7942735Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/06e11d32-181d-444a-943c-328a04b76b69?api-version=2016-12-01 + response: + body: + string: '{"id":"06e11d32-181d-444a-943c-328a04b76b69","name":"06e11d32-181d-444a-943c-328a04b76b69","status":"InProgress","startTime":"2019-07-08T06:43:25.7942735Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/06e11d32-181d-444a-943c-328a04b76b69?api-version=2016-12-01 + response: + body: + string: '{"id":"06e11d32-181d-444a-943c-328a04b76b69","name":"06e11d32-181d-444a-943c-328a04b76b69","status":"InProgress","startTime":"2019-07-08T06:43:25.7942735Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/06e11d32-181d-444a-943c-328a04b76b69?api-version=2016-12-01 + response: + body: + string: '{"id":"06e11d32-181d-444a-943c-328a04b76b69","name":"06e11d32-181d-444a-943c-328a04b76b69","status":"InProgress","startTime":"2019-07-08T06:43:25.7942735Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:43: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 -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/06e11d32-181d-444a-943c-328a04b76b69?api-version=2016-12-01 + response: + body: + string: '{"id":"06e11d32-181d-444a-943c-328a04b76b69","name":"06e11d32-181d-444a-943c-328a04b76b69","status":"InProgress","startTime":"2019-07-08T06:43:25.7942735Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/06e11d32-181d-444a-943c-328a04b76b69?api-version=2016-12-01 + response: + body: + string: '{"id":"06e11d32-181d-444a-943c-328a04b76b69","name":"06e11d32-181d-444a-943c-328a04b76b69","status":"InProgress","startTime":"2019-07-08T06:43:25.7942735Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:43: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 -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/06e11d32-181d-444a-943c-328a04b76b69?api-version=2016-12-01 + response: + body: + string: '{"id":"06e11d32-181d-444a-943c-328a04b76b69","name":"06e11d32-181d-444a-943c-328a04b76b69","status":"InProgress","startTime":"2019-07-08T06:43:25.7942735Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/06e11d32-181d-444a-943c-328a04b76b69?api-version=2016-12-01 + response: + body: + string: '{"id":"06e11d32-181d-444a-943c-328a04b76b69","name":"06e11d32-181d-444a-943c-328a04b76b69","status":"InProgress","startTime":"2019-07-08T06:43:25.7942735Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/06e11d32-181d-444a-943c-328a04b76b69?api-version=2016-12-01 + response: + body: + string: '{"id":"06e11d32-181d-444a-943c-328a04b76b69","name":"06e11d32-181d-444a-943c-328a04b76b69","status":"InProgress","startTime":"2019-07-08T06:43:25.7942735Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/06e11d32-181d-444a-943c-328a04b76b69?api-version=2016-12-01 + response: + body: + string: '{"id":"06e11d32-181d-444a-943c-328a04b76b69","name":"06e11d32-181d-444a-943c-328a04b76b69","status":"InProgress","startTime":"2019-07-08T06:43:25.7942735Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/06e11d32-181d-444a-943c-328a04b76b69?api-version=2016-12-01 + response: + body: + string: '{"id":"06e11d32-181d-444a-943c-328a04b76b69","name":"06e11d32-181d-444a-943c-328a04b76b69","status":"InProgress","startTime":"2019-07-08T06:43:25.7942735Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/06e11d32-181d-444a-943c-328a04b76b69?api-version=2016-12-01 + response: + body: + string: '{"id":"06e11d32-181d-444a-943c-328a04b76b69","name":"06e11d32-181d-444a-943c-328a04b76b69","status":"InProgress","startTime":"2019-07-08T06:43:25.7942735Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/06e11d32-181d-444a-943c-328a04b76b69?api-version=2016-12-01 + response: + body: + string: '{"id":"06e11d32-181d-444a-943c-328a04b76b69","name":"06e11d32-181d-444a-943c-328a04b76b69","status":"InProgress","startTime":"2019-07-08T06:43:25.7942735Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/06e11d32-181d-444a-943c-328a04b76b69?api-version=2016-12-01 + response: + body: + string: '{"id":"06e11d32-181d-444a-943c-328a04b76b69","name":"06e11d32-181d-444a-943c-328a04b76b69","status":"InProgress","startTime":"2019-07-08T06:43:25.7942735Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/06e11d32-181d-444a-943c-328a04b76b69?api-version=2016-12-01 + response: + body: + string: '{"id":"06e11d32-181d-444a-943c-328a04b76b69","name":"06e11d32-181d-444a-943c-328a04b76b69","status":"InProgress","startTime":"2019-07-08T06:43:25.7942735Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/06e11d32-181d-444a-943c-328a04b76b69?api-version=2016-12-01 + response: + body: + string: '{"id":"06e11d32-181d-444a-943c-328a04b76b69","name":"06e11d32-181d-444a-943c-328a04b76b69","status":"InProgress","startTime":"2019-07-08T06:43:25.7942735Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/06e11d32-181d-444a-943c-328a04b76b69?api-version=2016-12-01 + response: + body: + string: '{"id":"06e11d32-181d-444a-943c-328a04b76b69","name":"06e11d32-181d-444a-943c-328a04b76b69","status":"InProgress","startTime":"2019-07-08T06:43:25.7942735Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/06e11d32-181d-444a-943c-328a04b76b69?api-version=2016-12-01 + response: + body: + string: '{"id":"06e11d32-181d-444a-943c-328a04b76b69","name":"06e11d32-181d-444a-943c-328a04b76b69","status":"InProgress","startTime":"2019-07-08T06:43:25.7942735Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/06e11d32-181d-444a-943c-328a04b76b69?api-version=2016-12-01 + response: + body: + string: '{"id":"06e11d32-181d-444a-943c-328a04b76b69","name":"06e11d32-181d-444a-943c-328a04b76b69","status":"InProgress","startTime":"2019-07-08T06:43:25.7942735Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/06e11d32-181d-444a-943c-328a04b76b69?api-version=2016-12-01 + response: + body: + string: '{"id":"06e11d32-181d-444a-943c-328a04b76b69","name":"06e11d32-181d-444a-943c-328a04b76b69","status":"InProgress","startTime":"2019-07-08T06:43:25.7942735Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:43: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/06e11d32-181d-444a-943c-328a04b76b69?api-version=2016-12-01 + response: + body: + string: '{"id":"06e11d32-181d-444a-943c-328a04b76b69","name":"06e11d32-181d-444a-943c-328a04b76b69","status":"InProgress","startTime":"2019-07-08T06:43:25.7942735Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/06e11d32-181d-444a-943c-328a04b76b69?api-version=2016-12-01 + response: + body: + string: '{"id":"06e11d32-181d-444a-943c-328a04b76b69","name":"06e11d32-181d-444a-943c-328a04b76b69","status":"Succeeded","startTime":"2019-07-08T06:43:25.7942735Z","endTime":"2019-07-08T06:43:25.7942735Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"4d72e519-9cdf-4f3b-b2bc-f51b350e7b50"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/4d72e519-9cdf-4f3b-b2bc-f51b350e7b50?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/4d72e519-9cdf-4f3b-b2bc-f51b350e7b50","name":"4d72e519-9cdf-4f3b-b2bc-f51b350e7b50","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT32.9620407S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"testdb1","backupManagementType":"AzureWorkload","operation":"DisableBackup","status":"Completed","startTime":"2019-07-08T06:43:25.7942735Z","endTime":"2019-07-08T06:43:58.7563142Z","activityId":"af948e40-a14b-11e9-8deb-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '704' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:43: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 item show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -n -b -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":"ProtectionStopped","lastBackupStatus":"Healthy","lastBackupTime":"2019-07-08T06:41:27.1020576Z","protectedItemDataSourceId":"52776992323284","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-07-08T06:40:25Z","recoveryPointCount":1,"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","lastRecoveryPoint":"2019-07-08T06:40:25Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1305' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 +- 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/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 08 Jul 2019 06:44:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperationResults/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?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 -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/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?api-version=2016-12-01 + response: + body: + string: '{"id":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","name":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","status":"InProgress","startTime":"2019-07-08T06:44:01.2588393Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 + 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/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?api-version=2016-12-01 + response: + body: + string: '{"id":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","name":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","status":"InProgress","startTime":"2019-07-08T06:44:01.2588393Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 -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/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?api-version=2016-12-01 + response: + body: + string: '{"id":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","name":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","status":"InProgress","startTime":"2019-07-08T06:44:01.2588393Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 -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/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?api-version=2016-12-01 + response: + body: + string: '{"id":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","name":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","status":"InProgress","startTime":"2019-07-08T06:44:01.2588393Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?api-version=2016-12-01 + response: + body: + string: '{"id":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","name":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","status":"InProgress","startTime":"2019-07-08T06:44:01.2588393Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 -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/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?api-version=2016-12-01 + response: + body: + string: '{"id":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","name":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","status":"InProgress","startTime":"2019-07-08T06:44:01.2588393Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?api-version=2016-12-01 + response: + body: + string: '{"id":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","name":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","status":"InProgress","startTime":"2019-07-08T06:44:01.2588393Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 -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/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?api-version=2016-12-01 + response: + body: + string: '{"id":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","name":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","status":"InProgress","startTime":"2019-07-08T06:44:01.2588393Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 -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/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?api-version=2016-12-01 + response: + body: + string: '{"id":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","name":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","status":"InProgress","startTime":"2019-07-08T06:44:01.2588393Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 -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/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?api-version=2016-12-01 + response: + body: + string: '{"id":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","name":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","status":"InProgress","startTime":"2019-07-08T06:44:01.2588393Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?api-version=2016-12-01 + response: + body: + string: '{"id":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","name":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","status":"InProgress","startTime":"2019-07-08T06:44:01.2588393Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 -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/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?api-version=2016-12-01 + response: + body: + string: '{"id":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","name":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","status":"InProgress","startTime":"2019-07-08T06:44:01.2588393Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 -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/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?api-version=2016-12-01 + response: + body: + string: '{"id":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","name":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","status":"InProgress","startTime":"2019-07-08T06:44:01.2588393Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?api-version=2016-12-01 + response: + body: + string: '{"id":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","name":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","status":"InProgress","startTime":"2019-07-08T06:44:01.2588393Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 -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/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?api-version=2016-12-01 + response: + body: + string: '{"id":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","name":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","status":"InProgress","startTime":"2019-07-08T06:44:01.2588393Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?api-version=2016-12-01 + response: + body: + string: '{"id":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","name":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","status":"InProgress","startTime":"2019-07-08T06:44:01.2588393Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?api-version=2016-12-01 + response: + body: + string: '{"id":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","name":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","status":"InProgress","startTime":"2019-07-08T06:44:01.2588393Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?api-version=2016-12-01 + response: + body: + string: '{"id":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","name":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","status":"InProgress","startTime":"2019-07-08T06:44:01.2588393Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 -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/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?api-version=2016-12-01 + response: + body: + string: '{"id":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","name":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","status":"InProgress","startTime":"2019-07-08T06:44:01.2588393Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 -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/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?api-version=2016-12-01 + response: + body: + string: '{"id":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","name":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","status":"InProgress","startTime":"2019-07-08T06:44:01.2588393Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?api-version=2016-12-01 + response: + body: + string: '{"id":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","name":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","status":"InProgress","startTime":"2019-07-08T06:44:01.2588393Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 -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/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?api-version=2016-12-01 + response: + body: + string: '{"id":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","name":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","status":"InProgress","startTime":"2019-07-08T06:44:01.2588393Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 -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/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?api-version=2016-12-01 + response: + body: + string: '{"id":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","name":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","status":"InProgress","startTime":"2019-07-08T06:44:01.2588393Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 -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/03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee?api-version=2016-12-01 + response: + body: + string: '{"id":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","name":"03f9e0b6-60c0-40b6-bc3a-6b8c950fc5ee","status":"Succeeded","startTime":"2019-07-08T06:44:01.2588393Z","endTime":"2019-07-08T06:44:01.2588393Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c7d84f57-7f51-4cf3-8fce-6e1e6d153d65"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 -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/c7d84f57-7f51-4cf3-8fce-6e1e6d153d65?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/c7d84f57-7f51-4cf3-8fce-6e1e6d153d65","name":"c7d84f57-7f51-4cf3-8fce-6e1e6d153d65","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT32.3871855S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"testdb1","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2019-07-08T06:44:01.2588393Z","endTime":"2019-07-08T06:44:33.6460248Z","activityId":"c49ec440-a14b-11e9-9b44-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '707' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06: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 +- 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 06:44:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:44: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:45: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 06:46: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/ff5441d9-b84d-46ae-be5c-aa3a967a8002?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ff5441d9-b84d-46ae-be5c-aa3a967a8002?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 06:46: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 06:46: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/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..e18c235bf0a --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_restore.yaml @@ -0,0 +1,17868 @@ +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 09:20: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: '{"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 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:20: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:31 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:21:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22: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/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/060b02d6-f136-42ce-9bb8-198c34a68aba?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-09T09:20:22.5838093Z","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 09:22: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 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-09T09:20:22.5838093Z","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 09:22: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 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 09:22: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/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 09:22: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", "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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 09 Jul 2019 09:22:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/sqldatabase;mssqlserver;testdb1/operationResults/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22: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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22: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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22: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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22: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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22: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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22: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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22: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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22: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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22: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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22: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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22: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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22: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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22: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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22: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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22: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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22: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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22: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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22: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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22: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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:22: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:23: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:23:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- 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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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: + - -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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: + - -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"InProgress","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/ff791408-7b4f-4bfb-b8ed-04b6419c59ae?api-version=2016-12-01 + response: + body: + string: '{"id":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","name":"ff791408-7b4f-4bfb-b8ed-04b6419c59ae","status":"Succeeded","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"2019-07-09T09:22:17.3059575Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"e0c98bb2-d75c-4d44-9329-e1fb8889257b"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 -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/e0c98bb2-d75c-4d44-9329-e1fb8889257b?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/e0c98bb2-d75c-4d44-9329-e1fb8889257b","name":"e0c98bb2-d75c-4d44-9329-e1fb8889257b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M14.0333984S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"HourlyLogBackup"}},"entityFriendlyName":"testdb1","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2019-07-09T09:22:17.3059575Z","endTime":"2019-07-09T09:23:31.3393559Z","activityId":"0ae4cecc-a22b-11e9-8a84-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '739' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:23:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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 --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?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-09T09:20:22.5838093Z","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 09: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: '{"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 -b -r -e + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 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/protectedItems/sqldatabase%3Bmssqlserver%3Btestdb1/backup?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - 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/128d0028-081e-4899-8fa9-7980d89d9b22?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 09 Jul 2019 09:23:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/sqldatabase;mssqlserver;testdb1/operationResults/128d0028-081e-4899-8fa9-7980d89d9b22?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 -b -r -e + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/128d0028-081e-4899-8fa9-7980d89d9b22?api-version=2016-12-01 + response: + body: + string: '{"id":"128d0028-081e-4899-8fa9-7980d89d9b22","name":"128d0028-081e-4899-8fa9-7980d89d9b22","status":"InProgress","startTime":"2019-07-09T09:23:33.2682047Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 backup-now + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -b -r -e + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/128d0028-081e-4899-8fa9-7980d89d9b22?api-version=2016-12-01 + response: + body: + string: '{"id":"128d0028-081e-4899-8fa9-7980d89d9b22","name":"128d0028-081e-4899-8fa9-7980d89d9b22","status":"Succeeded","startTime":"2019-07-09T09:23:33.2682047Z","endTime":"2019-07-09T09:23:33.2682047Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"6413c8fe-8c00-4444-b6fa-de1031189112"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 backup-now + Connection: + - keep-alive + ParameterSetName: + - -v -g -i -b -r -e + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/6413c8fe-8c00-4444-b6fa-de1031189112?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/6413c8fe-8c00-4444-b6fa-de1031189112","name":"6413c8fe-8c00-4444-b6fa-de1031189112","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.3722818S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/testdb1 + [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-09T09:23:33.2682047Z","activityId":"3888ba4c-a22b-11e9-b14c-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '761' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:23: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/6413c8fe-8c00-4444-b6fa-de1031189112?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/6413c8fe-8c00-4444-b6fa-de1031189112","name":"6413c8fe-8c00-4444-b6fa-de1031189112","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.8278234S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/testdb1 + [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-09T09:23:33.2682047Z","activityId":"3888ba4c-a22b-11e9-b14c-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '761' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:23: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/6413c8fe-8c00-4444-b6fa-de1031189112?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/6413c8fe-8c00-4444-b6fa-de1031189112","name":"6413c8fe-8c00-4444-b6fa-de1031189112","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3.2165404S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/testdb1 + [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-09T09:23:33.2682047Z","activityId":"3888ba4c-a22b-11e9-b14c-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '761' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:23:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -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/backupJobs/6413c8fe-8c00-4444-b6fa-de1031189112?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/6413c8fe-8c00-4444-b6fa-de1031189112","name":"6413c8fe-8c00-4444-b6fa-de1031189112","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT33.5955009S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/testdb1 + [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-09T09:23:33.2682047Z","activityId":"3888ba4c-a22b-11e9-b14c-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '762' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:24: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 job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -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/backupJobs/6413c8fe-8c00-4444-b6fa-de1031189112?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/6413c8fe-8c00-4444-b6fa-de1031189112","name":"6413c8fe-8c00-4444-b6fa-de1031189112","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M3.932258S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/testdb1 + [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-09T09:23:33.2682047Z","activityId":"3888ba4c-a22b-11e9-b14c-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '762' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:24:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/6413c8fe-8c00-4444-b6fa-de1031189112?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/6413c8fe-8c00-4444-b6fa-de1031189112","name":"6413c8fe-8c00-4444-b6fa-de1031189112","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M34.5007051S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/testdb1 + [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-09T09:23:33.2682047Z","activityId":"3888ba4c-a22b-11e9-b14c-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '764' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:25:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -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/backupJobs/6413c8fe-8c00-4444-b6fa-de1031189112?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/6413c8fe-8c00-4444-b6fa-de1031189112","name":"6413c8fe-8c00-4444-b6fa-de1031189112","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M4.8562256S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/testdb1 + [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-09T09:23:33.2682047Z","activityId":"3888ba4c-a22b-11e9-b14c-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '763' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:25:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/6413c8fe-8c00-4444-b6fa-de1031189112?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/6413c8fe-8c00-4444-b6fa-de1031189112","name":"6413c8fe-8c00-4444-b6fa-de1031189112","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M35.5048919S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"entityFriendlyName":"MSSQLSERVER/testdb1 + [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Backup","status":"InProgress","startTime":"2019-07-09T09:23:33.2682047Z","activityId":"3888ba4c-a22b-11e9-b14c-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '764' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:26: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/6413c8fe-8c00-4444-b6fa-de1031189112?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/6413c8fe-8c00-4444-b6fa-de1031189112","name":"6413c8fe-8c00-4444-b6fa-de1031189112","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M3.4050142S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"Completed"}],"propertyBag":{"Data Transferred (in + MB)":"4.0825"}},"entityFriendlyName":"MSSQLSERVER/testdb1 [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Backup + (Full)","status":"Completed","startTime":"2019-07-09T09:23:33.2682047Z","endTime":"2019-07-09T09:26:36.6732189Z","activityId":"3888ba4c-a22b-11e9-b14c-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '844' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:26:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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 -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/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":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-07-09T09:25:11.3282545Z","protectedItemDataSourceId":"52777902052406","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-07-09T09:24:09Z","recoveryPointCount":1,"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","lastRecoveryPoint":"2019-07-09T09:24:09Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1485' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:27: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 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":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-07-09T09:25:11.3282545Z","protectedItemDataSourceId":"52777902052406","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-07-09T09:24:09Z","recoveryPointCount":1,"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","lastRecoveryPoint":"2019-07-09T09:24:09Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1485' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:27: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 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/31323182375143","name":"31323182375143","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2019-07-09T09:24:09Z","type":"Full"}},{"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: + - '1171' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:27: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 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"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3181' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:27: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 recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - -v -g -m -r -i -c -t + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: 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":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-07-09T09:25:11.3282545Z","protectedItemDataSourceId":"52777902052406","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-07-09T09:24:09Z","recoveryPointCount":1,"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","lastRecoveryPoint":"2019-07-09T09:24:09Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1485' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:27: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 recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - -v -g -m -r -i -c -t + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: 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":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-07-09T09:25:11.3282545Z","protectedItemDataSourceId":"52777902052406","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-07-09T09:24:09Z","recoveryPointCount":1,"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","lastRecoveryPoint":"2019-07-09T09:24:09Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1485' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:27: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 recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - -v -g -m -r -i -c -t + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: 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/31323182375143?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/recoveryPoints/31323182375143","name":"31323182375143","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2019-07-09T09:24:09Z","dataDirectoryPaths":[{"type":"Data","path":"F:\\Data\\testdb1.mdf","logicalName":"testdb1"},{"type":"Log","path":"F:\\Log\\testdb1_log.ldf","logicalName":"testdb1_log"}]},"recoveryPointTimeInUTC":"2019-07-09T09:24:09Z","type":"Full"}}' + headers: + cache-control: + - no-cache + content-length: + - '815' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:27: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 recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - -v -g -m -r -i -c -t + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/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/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/items","properties":{"dataDirectoryPaths":[{"type":"Data","path":"F:\\Data\\"},{"type":"Log","path":"F:\\Log\\"}],"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":true,"subinquireditemcount":0,"subWorkloadItemCount":4,"backupManagementType":"AzureWorkload","workloadType":"SQL","workloadItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '814' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:27: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": {"objectType": "AzureWorkloadSQLRestoreRequest", "recoveryType": + "AlternateLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8", + "targetInfo": {"overwriteOption": "Overwrite", "containerId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8", + "databaseName": "MSSQLSERVER/testdb1_restored_07_09_2019_1457"}, "shouldUseAlternateTargetLocation": + true, "isNonRecoverable": false, "alternateDirectoryPaths": [{"mappingType": + "Data", "sourceLogicalName": "testdb1", "sourcePath": "F:\\Data\\testdb1.mdf", + "targetPath": "F:\\Data\\testdb1_1562664440.mdf"}, {"mappingType": "Log", "sourceLogicalName": + "testdb1_log", "sourcePath": "F:\\Log\\testdb1_log.ldf", "targetPath": "F:\\Log\\testdb1_log_1562664440.ldf"}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurewl + Connection: + - keep-alive + Content-Length: + - '1036' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -v -g -r + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 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/protectedItems/SQLDataBase%3BMSSQLSERVER%3Btestdb1/recoveryPoints/31323182375143/restore?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - 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/9f3b2068-5336-4af3-be83-865aa69b89e2?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 09 Jul 2019 09:27: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/protectedItems/SQLDataBase;MSSQLSERVER;testdb1/operationResults/9f3b2068-5336-4af3-be83-865aa69b89e2?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: + - -v -g -r + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/9f3b2068-5336-4af3-be83-865aa69b89e2?api-version=2016-12-01 + response: + body: + string: '{"id":"9f3b2068-5336-4af3-be83-865aa69b89e2","name":"9f3b2068-5336-4af3-be83-865aa69b89e2","status":"InProgress","startTime":"2019-07-09T09:27:21.1431227Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:27: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 restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -r + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/9f3b2068-5336-4af3-be83-865aa69b89e2?api-version=2016-12-01 + response: + body: + string: '{"id":"9f3b2068-5336-4af3-be83-865aa69b89e2","name":"9f3b2068-5336-4af3-be83-865aa69b89e2","status":"Succeeded","startTime":"2019-07-09T09:27:21.1431227Z","endTime":"2019-07-09T09:27:21.1431227Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"95ef4a64-0467-4e47-95a5-d7ac6f275110"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:27: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 restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -r + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/95ef4a64-0467-4e47-95a5-d7ac6f275110?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/95ef4a64-0467-4e47-95a5-d7ac6f275110","name":"95ef4a64-0467-4e47-95a5-d7ac6f275110","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.692908S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/testdb1 [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:27:21.1431227Z","activityId":"c0516914-a22b-11e9-a9db-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '809' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:27:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/95ef4a64-0467-4e47-95a5-d7ac6f275110?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/95ef4a64-0467-4e47-95a5-d7ac6f275110","name":"95ef4a64-0467-4e47-95a5-d7ac6f275110","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT6.4620653S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/testdb1 [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:27:21.1431227Z","activityId":"c0516914-a22b-11e9-a9db-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '810' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:27:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/95ef4a64-0467-4e47-95a5-d7ac6f275110?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/95ef4a64-0467-4e47-95a5-d7ac6f275110","name":"95ef4a64-0467-4e47-95a5-d7ac6f275110","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT6.7726895S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/testdb1 [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:27:21.1431227Z","activityId":"c0516914-a22b-11e9-a9db-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '810' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/95ef4a64-0467-4e47-95a5-d7ac6f275110?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/95ef4a64-0467-4e47-95a5-d7ac6f275110","name":"95ef4a64-0467-4e47-95a5-d7ac6f275110","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT37.1058929S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/testdb1 [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:27:21.1431227Z","activityId":"c0516914-a22b-11e9-a9db-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '811' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/95ef4a64-0467-4e47-95a5-d7ac6f275110?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/95ef4a64-0467-4e47-95a5-d7ac6f275110","name":"95ef4a64-0467-4e47-95a5-d7ac6f275110","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M7.4625811S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/testdb1 [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:27:21.1431227Z","activityId":"c0516914-a22b-11e9-a9db-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '812' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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 job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -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/backupJobs/95ef4a64-0467-4e47-95a5-d7ac6f275110?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/95ef4a64-0467-4e47-95a5-d7ac6f275110","name":"95ef4a64-0467-4e47-95a5-d7ac6f275110","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M37.9367987S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/testdb1 [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:27:21.1431227Z","activityId":"c0516914-a22b-11e9-a9db-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '813' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:28: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/95ef4a64-0467-4e47-95a5-d7ac6f275110?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/95ef4a64-0467-4e47-95a5-d7ac6f275110","name":"95ef4a64-0467-4e47-95a5-d7ac6f275110","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M8.2982427S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/testdb1 [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:27:21.1431227Z","activityId":"c0516914-a22b-11e9-a9db-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '812' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:29:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/95ef4a64-0467-4e47-95a5-d7ac6f275110?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/95ef4a64-0467-4e47-95a5-d7ac6f275110","name":"95ef4a64-0467-4e47-95a5-d7ac6f275110","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M38.6579426S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/testdb1 [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:27:21.1431227Z","activityId":"c0516914-a22b-11e9-a9db-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '813' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:29: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/95ef4a64-0467-4e47-95a5-d7ac6f275110?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/95ef4a64-0467-4e47-95a5-d7ac6f275110","name":"95ef4a64-0467-4e47-95a5-d7ac6f275110","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M9.2777535S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/testdb1 [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:27:21.1431227Z","activityId":"c0516914-a22b-11e9-a9db-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '812' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:30:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/95ef4a64-0467-4e47-95a5-d7ac6f275110?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/95ef4a64-0467-4e47-95a5-d7ac6f275110","name":"95ef4a64-0467-4e47-95a5-d7ac6f275110","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M39.7814125S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/testdb1 [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:27:21.1431227Z","activityId":"c0516914-a22b-11e9-a9db-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '813' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:31: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/95ef4a64-0467-4e47-95a5-d7ac6f275110?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/95ef4a64-0467-4e47-95a5-d7ac6f275110","name":"95ef4a64-0467-4e47-95a5-d7ac6f275110","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT4M10.425446S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"entityFriendlyName":"MSSQLSERVER/testdb1 [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:27:21.1431227Z","activityId":"c0516914-a22b-11e9-a9db-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '812' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:31: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/95ef4a64-0467-4e47-95a5-d7ac6f275110?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/95ef4a64-0467-4e47-95a5-d7ac6f275110","name":"95ef4a64-0467-4e47-95a5-d7ac6f275110","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT4M33.4833172S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"Completed"}],"propertyBag":{"Data Transferred (in + MB)":"4.0825","Job Type":"Recovery to an alternate database","RestoreRecoveryPointTime":"7/9/2019 + 9:24:09 AM","RestoreDestination":"pstestwlvm1bca8/MSSQLSERVER/testdb1_restored_07_09_2019_1457"}},"entityFriendlyName":"MSSQLSERVER/testdb1 + [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Restore + (Full)","status":"Completed","startTime":"2019-07-09T09:27:21.1431227Z","endTime":"2019-07-09T09:31:54.6264399Z","activityId":"c0516914-a22b-11e9-a9db-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '1028' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:32: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 recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - -v -g -m -i -c -r + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: 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":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-07-09T09:25:11.3282545Z","protectedItemDataSourceId":"52777902052406","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-07-09T09:24:09Z","recoveryPointCount":1,"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","lastRecoveryPoint":"2019-07-09T09:24:09Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1485' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:32: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 recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - -v -g -m -i -c -r + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: 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":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2019-07-09T09:25:11.3282545Z","protectedItemDataSourceId":"52777902052406","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-07-09T09:24:09Z","recoveryPointCount":1,"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","lastRecoveryPoint":"2019-07-09T09:24:09Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1485' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:32: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 recoveryconfig show + Connection: + - keep-alive + ParameterSetName: + - -v -g -m -i -c -r + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: 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/31323182375143?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/recoveryPoints/31323182375143","name":"31323182375143","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2019-07-09T09:24:09Z","dataDirectoryPaths":[{"type":"Data","path":"F:\\Data\\testdb1.mdf","logicalName":"testdb1"},{"type":"Log","path":"F:\\Log\\testdb1_log.ldf","logicalName":"testdb1_log"}]},"recoveryPointTimeInUTC":"2019-07-09T09:24:09Z","type":"Full"}}' + headers: + cache-control: + - no-cache + content-length: + - '815' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:32:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"objectType": "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: + - -v -g -r + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 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/protectedItems/SQLDataBase%3BMSSQLSERVER%3Btestdb1/recoveryPoints/31323182375143/restore?api-version=2016-12-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - 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/9b091650-358e-40b6-bbdd-88a3c6c112ba?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 09 Jul 2019 09:32: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/protectedItems/SQLDataBase;MSSQLSERVER;testdb1/operationResults/9b091650-358e-40b6-bbdd-88a3c6c112ba?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 restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -r + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/9b091650-358e-40b6-bbdd-88a3c6c112ba?api-version=2016-12-01 + response: + body: + string: '{"id":"9b091650-358e-40b6-bbdd-88a3c6c112ba","name":"9b091650-358e-40b6-bbdd-88a3c6c112ba","status":"Succeeded","startTime":"2019-07-09T09:32:35.7878419Z","endTime":"2019-07-09T09:32:35.7878419Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"91981790-43a0-4889-90a2-7fddd245445b"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:32: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 restore restore-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -r + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/91981790-43a0-4889-90a2-7fddd245445b?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/91981790-43a0-4889-90a2-7fddd245445b","name":"91981790-43a0-4889-90a2-7fddd245445b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1.8093247S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"MSSQLSERVER/testdb1 [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:32:35.7878419Z","activityId":"7be8d45a-a22c-11e9-8fae-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '810' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:32:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/91981790-43a0-4889-90a2-7fddd245445b?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/91981790-43a0-4889-90a2-7fddd245445b","name":"91981790-43a0-4889-90a2-7fddd245445b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.3762762S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"MSSQLSERVER/testdb1 [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:32:35.7878419Z","activityId":"7be8d45a-a22c-11e9-8fae-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '810' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:32:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/91981790-43a0-4889-90a2-7fddd245445b?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/91981790-43a0-4889-90a2-7fddd245445b","name":"91981790-43a0-4889-90a2-7fddd245445b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.7359188S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"MSSQLSERVER/testdb1 [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:32:35.7878419Z","activityId":"7be8d45a-a22c-11e9-8fae-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '810' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:32:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/91981790-43a0-4889-90a2-7fddd245445b?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/91981790-43a0-4889-90a2-7fddd245445b","name":"91981790-43a0-4889-90a2-7fddd245445b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT33.0769308S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"MSSQLSERVER/testdb1 [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:32:35.7878419Z","activityId":"7be8d45a-a22c-11e9-8fae-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '811' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:33: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/91981790-43a0-4889-90a2-7fddd245445b?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/91981790-43a0-4889-90a2-7fddd245445b","name":"91981790-43a0-4889-90a2-7fddd245445b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M3.4476084S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"MSSQLSERVER/testdb1 [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:32:35.7878419Z","activityId":"7be8d45a-a22c-11e9-8fae-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '812' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:33:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + 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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/91981790-43a0-4889-90a2-7fddd245445b?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/91981790-43a0-4889-90a2-7fddd245445b","name":"91981790-43a0-4889-90a2-7fddd245445b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M33.7803232S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"MSSQLSERVER/testdb1 [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:32:35.7878419Z","activityId":"7be8d45a-a22c-11e9-8fae-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '813' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:34: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/91981790-43a0-4889-90a2-7fddd245445b?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/91981790-43a0-4889-90a2-7fddd245445b","name":"91981790-43a0-4889-90a2-7fddd245445b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M4.1966703S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"MSSQLSERVER/testdb1 [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:32:35.7878419Z","activityId":"7be8d45a-a22c-11e9-8fae-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '812' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:34: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/91981790-43a0-4889-90a2-7fddd245445b?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/91981790-43a0-4889-90a2-7fddd245445b","name":"91981790-43a0-4889-90a2-7fddd245445b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M34.537522S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"MSSQLSERVER/testdb1 [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:32:35.7878419Z","activityId":"7be8d45a-a22c-11e9-8fae-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '812' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:35: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/91981790-43a0-4889-90a2-7fddd245445b?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/91981790-43a0-4889-90a2-7fddd245445b","name":"91981790-43a0-4889-90a2-7fddd245445b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M5.1091214S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"MSSQLSERVER/testdb1 [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:32:35.7878419Z","activityId":"7be8d45a-a22c-11e9-8fae-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '812' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:35: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/91981790-43a0-4889-90a2-7fddd245445b?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/91981790-43a0-4889-90a2-7fddd245445b","name":"91981790-43a0-4889-90a2-7fddd245445b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M35.489484S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"MSSQLSERVER/testdb1 [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:32:35.7878419Z","activityId":"7be8d45a-a22c-11e9-8fae-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '812' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:36: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/91981790-43a0-4889-90a2-7fddd245445b?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/91981790-43a0-4889-90a2-7fddd245445b","name":"91981790-43a0-4889-90a2-7fddd245445b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT4M6.0292344S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to the original database"}},"entityFriendlyName":"MSSQLSERVER/testdb1 [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2019-07-09T09:32:35.7878419Z","activityId":"7be8d45a-a22c-11e9-8fae-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '812' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:36: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.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/91981790-43a0-4889-90a2-7fddd245445b?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/91981790-43a0-4889-90a2-7fddd245445b","name":"91981790-43a0-4889-90a2-7fddd245445b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT4M32.9370994S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"Completed"}],"propertyBag":{"Data Transferred (in + MB)":"4.0825","Job Type":"Recovery to the original database","RestoreRecoveryPointTime":"7/9/2019 + 9:24:09 AM","RestoreDestination":"pstestwlvm1bca8/MSSQLSERVER/testdb1"}},"entityFriendlyName":"MSSQLSERVER/testdb1 + [pstestwlvm1bca8]","backupManagementType":"AzureWorkload","operation":"Restore + (Full)","status":"Completed","startTime":"2019-07-09T09:32:35.7878419Z","endTime":"2019-07-09T09:37:08.7249413Z","activityId":"7be8d45a-a22c-11e9-8fae-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '1003' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:37: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: '{"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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 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/7ee02fe8-7136-4e3b-a14b-a50376c926e5?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 09 Jul 2019 09:37: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/protectedItems/sqldatabase;mssqlserver;testdb1/operationResults/7ee02fe8-7136-4e3b-a14b-a50376c926e5?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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/7ee02fe8-7136-4e3b-a14b-a50376c926e5?api-version=2016-12-01 + response: + body: + string: '{"id":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","name":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","status":"InProgress","startTime":"2019-07-09T09:37:43.1046742Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:37: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 -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/7ee02fe8-7136-4e3b-a14b-a50376c926e5?api-version=2016-12-01 + response: + body: + string: '{"id":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","name":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","status":"InProgress","startTime":"2019-07-09T09:37:43.1046742Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:37: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/7ee02fe8-7136-4e3b-a14b-a50376c926e5?api-version=2016-12-01 + response: + body: + string: '{"id":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","name":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","status":"InProgress","startTime":"2019-07-09T09:37:43.1046742Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:37: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 -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/7ee02fe8-7136-4e3b-a14b-a50376c926e5?api-version=2016-12-01 + response: + body: + string: '{"id":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","name":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","status":"InProgress","startTime":"2019-07-09T09:37:43.1046742Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:37: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/7ee02fe8-7136-4e3b-a14b-a50376c926e5?api-version=2016-12-01 + response: + body: + string: '{"id":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","name":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","status":"InProgress","startTime":"2019-07-09T09:37:43.1046742Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:37: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/7ee02fe8-7136-4e3b-a14b-a50376c926e5?api-version=2016-12-01 + response: + body: + string: '{"id":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","name":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","status":"InProgress","startTime":"2019-07-09T09:37:43.1046742Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:37: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/7ee02fe8-7136-4e3b-a14b-a50376c926e5?api-version=2016-12-01 + response: + body: + string: '{"id":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","name":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","status":"InProgress","startTime":"2019-07-09T09:37:43.1046742Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:37: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 -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/7ee02fe8-7136-4e3b-a14b-a50376c926e5?api-version=2016-12-01 + response: + body: + string: '{"id":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","name":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","status":"InProgress","startTime":"2019-07-09T09:37:43.1046742Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:37: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 -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/7ee02fe8-7136-4e3b-a14b-a50376c926e5?api-version=2016-12-01 + response: + body: + string: '{"id":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","name":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","status":"InProgress","startTime":"2019-07-09T09:37:43.1046742Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:37: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/7ee02fe8-7136-4e3b-a14b-a50376c926e5?api-version=2016-12-01 + response: + body: + string: '{"id":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","name":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","status":"InProgress","startTime":"2019-07-09T09:37:43.1046742Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:37: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/7ee02fe8-7136-4e3b-a14b-a50376c926e5?api-version=2016-12-01 + response: + body: + string: '{"id":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","name":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","status":"InProgress","startTime":"2019-07-09T09:37:43.1046742Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:37: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/7ee02fe8-7136-4e3b-a14b-a50376c926e5?api-version=2016-12-01 + response: + body: + string: '{"id":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","name":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","status":"InProgress","startTime":"2019-07-09T09:37:43.1046742Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:37: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/7ee02fe8-7136-4e3b-a14b-a50376c926e5?api-version=2016-12-01 + response: + body: + string: '{"id":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","name":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","status":"InProgress","startTime":"2019-07-09T09:37:43.1046742Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:37: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/7ee02fe8-7136-4e3b-a14b-a50376c926e5?api-version=2016-12-01 + response: + body: + string: '{"id":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","name":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","status":"InProgress","startTime":"2019-07-09T09:37:43.1046742Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/7ee02fe8-7136-4e3b-a14b-a50376c926e5?api-version=2016-12-01 + response: + body: + string: '{"id":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","name":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","status":"InProgress","startTime":"2019-07-09T09:37:43.1046742Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/7ee02fe8-7136-4e3b-a14b-a50376c926e5?api-version=2016-12-01 + response: + body: + string: '{"id":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","name":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","status":"InProgress","startTime":"2019-07-09T09:37:43.1046742Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/7ee02fe8-7136-4e3b-a14b-a50376c926e5?api-version=2016-12-01 + response: + body: + string: '{"id":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","name":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","status":"InProgress","startTime":"2019-07-09T09:37:43.1046742Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/7ee02fe8-7136-4e3b-a14b-a50376c926e5?api-version=2016-12-01 + response: + body: + string: '{"id":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","name":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","status":"InProgress","startTime":"2019-07-09T09:37:43.1046742Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/7ee02fe8-7136-4e3b-a14b-a50376c926e5?api-version=2016-12-01 + response: + body: + string: '{"id":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","name":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","status":"InProgress","startTime":"2019-07-09T09:37:43.1046742Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/7ee02fe8-7136-4e3b-a14b-a50376c926e5?api-version=2016-12-01 + response: + body: + string: '{"id":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","name":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","status":"InProgress","startTime":"2019-07-09T09:37:43.1046742Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/7ee02fe8-7136-4e3b-a14b-a50376c926e5?api-version=2016-12-01 + response: + body: + string: '{"id":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","name":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","status":"InProgress","startTime":"2019-07-09T09:37:43.1046742Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 -i -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/7ee02fe8-7136-4e3b-a14b-a50376c926e5?api-version=2016-12-01 + response: + body: + string: '{"id":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","name":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","status":"InProgress","startTime":"2019-07-09T09:37:43.1046742Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/7ee02fe8-7136-4e3b-a14b-a50376c926e5?api-version=2016-12-01 + response: + body: + string: '{"id":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","name":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","status":"InProgress","startTime":"2019-07-09T09:37:43.1046742Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/7ee02fe8-7136-4e3b-a14b-a50376c926e5?api-version=2016-12-01 + response: + body: + string: '{"id":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","name":"7ee02fe8-7136-4e3b-a14b-a50376c926e5","status":"Succeeded","startTime":"2019-07-09T09:37:43.1046742Z","endTime":"2019-07-09T09:37:43.1046742Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"83bcd79f-14dd-41f1-b082-6a96ffd924af"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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 + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + 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/83bcd79f-14dd-41f1-b082-6a96ffd924af?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/83bcd79f-14dd-41f1-b082-6a96ffd924af","name":"83bcd79f-14dd-41f1-b082-6a96ffd924af","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT32.2477816S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"testdb1","backupManagementType":"AzureWorkload","operation":"DisableBackup","status":"Completed","startTime":"2019-07-09T09:37:43.1046742Z","endTime":"2019-07-09T09:38:15.3524558Z","activityId":"330ffa2e-a22d-11e9-b476-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '704' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 item show + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -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/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":"ProtectionStopped","lastBackupStatus":"Healthy","lastBackupTime":"2019-07-09T09:25:11.3282545Z","protectedItemDataSourceId":"52777902052406","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2019-07-09T09:24:09Z","recoveryPointCount":1,"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","lastRecoveryPoint":"2019-07-09T09:24:09Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '1305' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09: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: 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/40595ef0-88d2-490c-8643-7d6a83288581?api-version=2016-12-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 09 Jul 2019 09:38:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperationResults/40595ef0-88d2-490c-8643-7d6a83288581?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/40595ef0-88d2-490c-8643-7d6a83288581?api-version=2016-12-01 + response: + body: + string: '{"id":"40595ef0-88d2-490c-8643-7d6a83288581","name":"40595ef0-88d2-490c-8643-7d6a83288581","status":"InProgress","startTime":"2019-07-09T09:38:17.8366178Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 -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/40595ef0-88d2-490c-8643-7d6a83288581?api-version=2016-12-01 + response: + body: + string: '{"id":"40595ef0-88d2-490c-8643-7d6a83288581","name":"40595ef0-88d2-490c-8643-7d6a83288581","status":"InProgress","startTime":"2019-07-09T09:38:17.8366178Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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/40595ef0-88d2-490c-8643-7d6a83288581?api-version=2016-12-01 + response: + body: + string: '{"id":"40595ef0-88d2-490c-8643-7d6a83288581","name":"40595ef0-88d2-490c-8643-7d6a83288581","status":"InProgress","startTime":"2019-07-09T09:38:17.8366178Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 -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/40595ef0-88d2-490c-8643-7d6a83288581?api-version=2016-12-01 + response: + body: + string: '{"id":"40595ef0-88d2-490c-8643-7d6a83288581","name":"40595ef0-88d2-490c-8643-7d6a83288581","status":"InProgress","startTime":"2019-07-09T09:38:17.8366178Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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/40595ef0-88d2-490c-8643-7d6a83288581?api-version=2016-12-01 + response: + body: + string: '{"id":"40595ef0-88d2-490c-8643-7d6a83288581","name":"40595ef0-88d2-490c-8643-7d6a83288581","status":"InProgress","startTime":"2019-07-09T09:38:17.8366178Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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/40595ef0-88d2-490c-8643-7d6a83288581?api-version=2016-12-01 + response: + body: + string: '{"id":"40595ef0-88d2-490c-8643-7d6a83288581","name":"40595ef0-88d2-490c-8643-7d6a83288581","status":"InProgress","startTime":"2019-07-09T09:38:17.8366178Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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/40595ef0-88d2-490c-8643-7d6a83288581?api-version=2016-12-01 + response: + body: + string: '{"id":"40595ef0-88d2-490c-8643-7d6a83288581","name":"40595ef0-88d2-490c-8643-7d6a83288581","status":"InProgress","startTime":"2019-07-09T09:38:17.8366178Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 -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/40595ef0-88d2-490c-8643-7d6a83288581?api-version=2016-12-01 + response: + body: + string: '{"id":"40595ef0-88d2-490c-8643-7d6a83288581","name":"40595ef0-88d2-490c-8643-7d6a83288581","status":"InProgress","startTime":"2019-07-09T09:38:17.8366178Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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/40595ef0-88d2-490c-8643-7d6a83288581?api-version=2016-12-01 + response: + body: + string: '{"id":"40595ef0-88d2-490c-8643-7d6a83288581","name":"40595ef0-88d2-490c-8643-7d6a83288581","status":"InProgress","startTime":"2019-07-09T09:38:17.8366178Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 -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/40595ef0-88d2-490c-8643-7d6a83288581?api-version=2016-12-01 + response: + body: + string: '{"id":"40595ef0-88d2-490c-8643-7d6a83288581","name":"40595ef0-88d2-490c-8643-7d6a83288581","status":"InProgress","startTime":"2019-07-09T09:38:17.8366178Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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/40595ef0-88d2-490c-8643-7d6a83288581?api-version=2016-12-01 + response: + body: + string: '{"id":"40595ef0-88d2-490c-8643-7d6a83288581","name":"40595ef0-88d2-490c-8643-7d6a83288581","status":"InProgress","startTime":"2019-07-09T09:38:17.8366178Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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/40595ef0-88d2-490c-8643-7d6a83288581?api-version=2016-12-01 + response: + body: + string: '{"id":"40595ef0-88d2-490c-8643-7d6a83288581","name":"40595ef0-88d2-490c-8643-7d6a83288581","status":"InProgress","startTime":"2019-07-09T09:38:17.8366178Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 -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/40595ef0-88d2-490c-8643-7d6a83288581?api-version=2016-12-01 + response: + body: + string: '{"id":"40595ef0-88d2-490c-8643-7d6a83288581","name":"40595ef0-88d2-490c-8643-7d6a83288581","status":"InProgress","startTime":"2019-07-09T09:38:17.8366178Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 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/40595ef0-88d2-490c-8643-7d6a83288581?api-version=2016-12-01 + response: + body: + string: '{"id":"40595ef0-88d2-490c-8643-7d6a83288581","name":"40595ef0-88d2-490c-8643-7d6a83288581","status":"InProgress","startTime":"2019-07-09T09:38:17.8366178Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 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/40595ef0-88d2-490c-8643-7d6a83288581?api-version=2016-12-01 + response: + body: + string: '{"id":"40595ef0-88d2-490c-8643-7d6a83288581","name":"40595ef0-88d2-490c-8643-7d6a83288581","status":"InProgress","startTime":"2019-07-09T09:38:17.8366178Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 -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/40595ef0-88d2-490c-8643-7d6a83288581?api-version=2016-12-01 + response: + body: + string: '{"id":"40595ef0-88d2-490c-8643-7d6a83288581","name":"40595ef0-88d2-490c-8643-7d6a83288581","status":"InProgress","startTime":"2019-07-09T09:38:17.8366178Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 -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/40595ef0-88d2-490c-8643-7d6a83288581?api-version=2016-12-01 + response: + body: + string: '{"id":"40595ef0-88d2-490c-8643-7d6a83288581","name":"40595ef0-88d2-490c-8643-7d6a83288581","status":"InProgress","startTime":"2019-07-09T09:38:17.8366178Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 -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/40595ef0-88d2-490c-8643-7d6a83288581?api-version=2016-12-01 + response: + body: + string: '{"id":"40595ef0-88d2-490c-8643-7d6a83288581","name":"40595ef0-88d2-490c-8643-7d6a83288581","status":"InProgress","startTime":"2019-07-09T09:38:17.8366178Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 -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/40595ef0-88d2-490c-8643-7d6a83288581?api-version=2016-12-01 + response: + body: + string: '{"id":"40595ef0-88d2-490c-8643-7d6a83288581","name":"40595ef0-88d2-490c-8643-7d6a83288581","status":"InProgress","startTime":"2019-07-09T09:38:17.8366178Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 -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/40595ef0-88d2-490c-8643-7d6a83288581?api-version=2016-12-01 + response: + body: + string: '{"id":"40595ef0-88d2-490c-8643-7d6a83288581","name":"40595ef0-88d2-490c-8643-7d6a83288581","status":"InProgress","startTime":"2019-07-09T09:38:17.8366178Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 -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/40595ef0-88d2-490c-8643-7d6a83288581?api-version=2016-12-01 + response: + body: + string: '{"id":"40595ef0-88d2-490c-8643-7d6a83288581","name":"40595ef0-88d2-490c-8643-7d6a83288581","status":"InProgress","startTime":"2019-07-09T09:38:17.8366178Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 -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/40595ef0-88d2-490c-8643-7d6a83288581?api-version=2016-12-01 + response: + body: + string: '{"id":"40595ef0-88d2-490c-8643-7d6a83288581","name":"40595ef0-88d2-490c-8643-7d6a83288581","status":"InProgress","startTime":"2019-07-09T09:38:17.8366178Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 -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/40595ef0-88d2-490c-8643-7d6a83288581?api-version=2016-12-01 + response: + body: + string: '{"id":"40595ef0-88d2-490c-8643-7d6a83288581","name":"40595ef0-88d2-490c-8643-7d6a83288581","status":"InProgress","startTime":"2019-07-09T09:38:17.8366178Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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 -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/40595ef0-88d2-490c-8643-7d6a83288581?api-version=2016-12-01 + response: + body: + string: '{"id":"40595ef0-88d2-490c-8643-7d6a83288581","name":"40595ef0-88d2-490c-8643-7d6a83288581","status":"Succeeded","startTime":"2019-07-09T09:38:17.8366178Z","endTime":"2019-07-09T09:38:17.8366178Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"d4d7c434-91e5-4a80-b630-d34023c096f1"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 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/d4d7c434-91e5-4a80-b630-d34023c096f1?api-version=2017-07-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupJobs/d4d7c434-91e5-4a80-b630-d34023c096f1","name":"d4d7c434-91e5-4a80-b630-d34023c096f1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT32.2896253S","extendedInfo":{"tasksList":[],"propertyBag":{}},"entityFriendlyName":"testdb1","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2019-07-09T09:38:17.8366178Z","endTime":"2019-07-09T09:38:50.1262431Z","activityId":"47b22910-a22d-11e9-98ed-3c52826c1986"}}' + headers: + cache-control: + - no-cache + content-length: + - '707' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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: + - Tue, 09 Jul 2019 09:38:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:38:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:15 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:39:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:40: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:41: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:41: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:41: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:41: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:41: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:41: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:41: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Tue, 09 Jul 2019 09:41: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/a3e690bd-5df7-4120-a9ac-6bd572c2e894?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -v -g -n -y + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/a3e690bd-5df7-4120-a9ac-6bd572c2e894?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 09:41:10 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 09:41:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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..59b85880dc8 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_rp.yaml @@ -0,0 +1,12696 @@ +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 05:02:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-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 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:02:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:02:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:02: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:02: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:02:26 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:02:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:02:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:02:31 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:02:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:02: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:02:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:02: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:02:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:02:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:03:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:03:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:03:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:03:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:03: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:03: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:03: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:03: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:03: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:03: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:03: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:03: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:03: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:03: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05:04: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + response: + body: + string: '{}' + headers: + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Mon, 08 Jul 2019 05: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/378cf2bd-1481-4aef-a1fc-2043867aa64d?api-version=2016-12-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container register + Connection: + - keep-alive + ParameterSetName: + - -v -g -b -w -i + User-Agent: + - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-recoveryservicesbackup/0.4.0 + Azure-SDK-For-Python AZURECLI/2.0.68 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/378cf2bd-1481-4aef-a1fc-2043867aa64d?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-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: + - '1159' + 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 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_backup_commands.py b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands.py index dc0c5cc8467..8b4985f1f27 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands.py +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands.py @@ -207,13 +207,9 @@ def test_backup_policy(self, resource_group, vault_name, policy1, policy2, vm1, self.check("length([?name == '{policy2}'])", 1) ]) - self.cmd('backup policy list-associated-items -g {rg} -v {vault} -n {default}', checks=[ - self.check("length(@)", 2), - self.check("length([?properties.friendlyName == '{}'])".format(vm1), 1), - self.check("length([?properties.friendlyName == '{}'])".format(vm2), 1) - ]) - + self.kwargs['instantRpRetentionRangeInDays'] = 2 self.kwargs['policy1_json']['name'] = self.kwargs['policy3'] + self.kwargs['policy1_json']['properties']['instantRpRetentionRangeInDays'] = 2 self.kwargs['policy1_json'] = json.dumps(self.kwargs['policy1_json']) self.cmd("backup policy set -g {rg} -v {vault} --policy '{policy1_json}'", checks=[ @@ -221,6 +217,18 @@ def test_backup_policy(self, resource_group, vault_name, policy1, policy2, vm1, self.check('resourceGroup', '{rg}') ]) + self.kwargs['policy1_json'] = self.cmd('backup policy show -g {rg} -v {vault} -n {policy1}', checks=[ + self.check('name', '{policy1}'), + self.check('resourceGroup', '{rg}'), + self.check('properties.instantRpRetentionRangeInDays', '{instantRpRetentionRangeInDays}') + ]).get_output_in_json() + + self.cmd('backup policy list-associated-items -g {rg} -v {vault} -n {default}', checks=[ + self.check("length(@)", 2), + self.check("length([?properties.friendlyName == '{}'])".format(vm1), 1), + self.check("length([?properties.friendlyName == '{}'])".format(vm2), 1) + ]) + self.cmd('backup policy list -g {rg} -v {vault}', checks=[ self.check("length(@)", 5), self.check("length([?name == '{default}'])", 1), diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands_wl.py b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands_wl.py new file mode 100644 index 00000000000..b769710b1de --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands_wl.py @@ -0,0 +1,158 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import unittest + +import azure.cli.command_modules.backup.tests.latest.test_backup_commands_wl_help as wl_help + +from azure.cli.testsdk import ScenarioTest + + +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]' + + +class BackupTests(ScenarioTest, unittest.TestCase): + def test_backup_wl_sql_container(self, container_name1=container_sql, container_name2=container_friendly_sql, + resource_group=rg_sql, vault_name=vault_sql, workload_type='MSSQL', + subscription=sub_sql, id=id_sql): + + wl_help.test_backup_wl_container(self, container_name1, container_name2, resource_group, vault_name, + workload_type, subscription, id) + + 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): + + wl_help.test_backup_wl_container(self, container_name1, container_name2, resource_group, vault_name, + workload_type, subscription, id) + + def test_backup_wl_sql_policy(self, container_name1=container_sql, container_name2=container_friendly_sql, + resource_group=rg_sql, vault_name=vault_sql, policy_name='HourlyLogBackup', + workload_type='MSSQL', subscription=sub_sql, item1=item1_sql, id=id_sql, item_type='SQLDataBase', + item_id=item_id_sql, policy_new='new'): + + wl_help.test_backup_wl_policy(self, container_name1, container_name2, resource_group, vault_name, policy_name, + workload_type, subscription, item1, id, item_type, item_id, policy_new) + + def test_backup_wl_hana_policy(self, container_name1=container_hana, container_name2=container_friendly_hana, + resource_group=rg_hana, vault_name=vault_hana, policy_name='DemoBackup', + workload_type='SAPHANA', subscription=sub_hana, item1=item1_hana, id=id_hana, item_type='HANADataBase', + item_id=item_id_hana, policy_new='new'): + + wl_help.test_backup_wl_policy(self, container_name1, container_name2, resource_group, vault_name, policy_name, + workload_type, subscription, item1, id, item_type, item_id, policy_new) + + def test_backup_wl_sql_item(self, container_name1=container_sql, container_name2=container_friendly_sql, + resource_group=rg_sql, vault_name=vault_sql, policy_name='HourlyLogBackup', + workload_type='MSSQL', subscription=sub_sql, item1=item1_sql, id=id_sql, item_type='SQLDataBase', + item_id=item_id_sql): + + wl_help.test_backup_wl_item(self, container_name1, container_name2, resource_group, vault_name, policy_name, + workload_type, subscription, item1, id, item_type, item_id) + + def test_backup_wl_hana_item(self, container_name1=container_hana, container_name2=container_friendly_hana, + resource_group=rg_hana, vault_name=vault_hana, policy_name='HourlyLogBackup', + workload_type='SAPHANA', subscription=sub_hana, item1=item1_hana, id=id_hana, item_type='HANADataBase', + item_id=item_id_hana): + + wl_help.test_backup_wl_item(self, container_name1, container_name2, resource_group, vault_name, policy_name, + workload_type, subscription, item1, id, item_type, item_id) + + def test_backup_wl_sql_protectable_item(self, container_name1=container_sql, container_name2=container_friendly_sql, + resource_group=rg_sql, vault_name=vault_sql, policy_name='HourlyLogBackup', + workload_type='MSSQL', subscription=sub_sql, item1=item1_sql, id=id_sql, item_type='SQLDataBase', + item_id=item_id_sql): + + wl_help.test_backup_wl_protectable_item(self, container_name1, container_name2, resource_group, vault_name, policy_name, + workload_type, subscription, item1, id, item_type, item_id) + + def test_backup_wl_hana_protectable_item(self, container_name1=container_hana, container_name2=container_friendly_hana, + resource_group=rg_hana, vault_name=vault_hana, policy_name='HourlyLogBackup', + workload_type='SAPHANA', subscription=sub_hana, item1=item1_hana, id=id_hana, + item_type='HANADataBase', item_id=item_id_hana): + + wl_help.test_backup_wl_protectable_item(self, container_name1, container_name2, resource_group, vault_name, policy_name, + workload_type, subscription, item1, id, item_type, item_id) + + def test_backup_wl_sql_rp(self, container_name=container_sql, resource_group=rg_sql, vault_name=vault_sql, + item_name=item1_sql, workload_type='MSSQL', subscription=sub_sql, item_type='SQLDatabase', + container_name2=container_friendly_sql, policy_name='HourlyLogBackup', id=id_sql, + item_id=item_id_sql): + + wl_help.test_backup_wl_rp(self, container_name, resource_group, vault_name, item_name, workload_type, subscription, + item_type, container_name2, policy_name, id, item_id) + + def test_backup_wl_hana_rp(self, container_name=container_hana, resource_group=rg_hana, vault_name=vault_hana, + item_name=item1_hana, workload_type='SAPHANA', subscription=sub_hana, item_type='HANADatabase', + container_name2=container_friendly_hana, policy_name='HourlyLogBackup', id=id_hana, + item_id=item_id_hana): + + wl_help.test_backup_wl_rp(self, container_name, resource_group, vault_name, item_name, workload_type, subscription, + item_type, container_name2, policy_name, id, item_id) + + def test_backup_wl_sql_protection(self, container_name1=container_sql, container_name2=container_friendly_sql, + resource_group=rg_sql, vault_name=vault_sql, policy_name='HourlyLogBackup', + workload_type='MSSQL', subscription=sub_sql, item1=item1_sql, id=id_sql, item_type='SQLDataBase', + item_id=item_id_sql, backup_entity_friendly_name=backup_entity_friendly_name_sql): + + wl_help.test_backup_wl_protection(self, container_name1, container_name2, resource_group, vault_name, policy_name, + workload_type, subscription, item1, id, item_type, item_id, backup_entity_friendly_name) + + def test_backup_wl_hana_protection(self, container_name1=container_hana, container_name2=container_friendly_hana, + resource_group=rg_hana, vault_name=vault_hana, policy_name='HourlyLogBackup', + workload_type='SAPHANA', subscription=sub_hana, item1=item1_hana, id=id_hana, + item_type='HANADataBase', item_id=item_id_hana, backup_entity_friendly_name=backup_entity_friendly_name_hana): + + wl_help.test_backup_wl_protection(self, container_name1, container_name2, resource_group, vault_name, policy_name, + workload_type, subscription, item1, id, item_type, item_id, backup_entity_friendly_name) + + def test_backup_wl_sql_auto_protection(self, container_name1=container_sql, container_name2=container_friendly_sql, + resource_group=rg_sql, vault_name=vault_sql, policy_name='HourlyLogBackup', + workload_type='MSSQL', subscription=sub_sql, item1=item_auto_sql, id=id_sql, item_type='SQLInstance', + item_id=item_id_sql, backup_entity_friendly_name=backup_entity_friendly_name_sql): + + wl_help.test_backup_wl_auto_protection(self, container_name1, container_name2, resource_group, vault_name, policy_name, + workload_type, subscription, item1, id, item_type, item_id, backup_entity_friendly_name) + + def test_backup_wl_hana_restore(self, container_name1=container_hana, container_name2=container_friendly_hana, + resource_group=rg_hana, vault_name=vault_hana, policy_name='HourlyLogBackup', + workload_type='SAPHANA', subscription=sub_hana, item1=item1_hana, id=id_hana, + item_type='HANADataBase', item_id=item_id_hana, backup_entity_friendly_name=backup_entity_friendly_name_hana, + target_type='HANAInstance', target_item='H22'): + + wl_help.test_backup_wl_restore(self, container_name1, container_name2, resource_group, vault_name, policy_name, + workload_type, subscription, item1, id, item_type, item_id, backup_entity_friendly_name, target_type, + target_item) + + def test_backup_wl_sql_restore(self, container_name1=container_sql, container_name2=container_friendly_sql, + resource_group=rg_sql, vault_name=vault_sql, policy_name='HourlyLogBackup', + workload_type='MSSQL', subscription=sub_sql, item1=item1_sql, id=id_sql, item_type='SQLDataBase', + item_id=item_id_sql, backup_entity_friendly_name=backup_entity_friendly_name_sql, target_type='SQLInstance', + target_item='MSSQLSERVER'): + + wl_help.test_backup_wl_restore(self, container_name1, container_name2, resource_group, vault_name, policy_name, + workload_type, subscription, item1, id, item_type, item_id, backup_entity_friendly_name, target_type, + target_item) diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands_wl_help.py b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands_wl_help.py new file mode 100644 index 00000000000..38656e6ad02 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_backup_commands_wl_help.py @@ -0,0 +1,548 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import json + + +def test_backup_wl_container(self, container_name1, container_name2, resource_group, vault_name, workload_type, subscription, id): + + self.kwargs.update({ + 'vault': vault_name, + 'name': container_name1, + 'fname': container_name2, + 'rg': resource_group, + 'wt': workload_type, + 'sub': subscription, + 'id': id + }) + + 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_name.lower(), container_json['id'].lower()) + self.assertIn(container_name1.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 -n{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} -n {name} -y') + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 0)]) + + +def test_backup_wl_policy(self, container_name1, container_name2, resource_group, vault_name, policy_name, workload_type, subscription, item, id, item_type, item_id, policy_new): + + self.kwargs.update({ + 'vault': vault_name, + 'name': container_name1, + 'fname': container_name2, + 'policy': policy_name, + 'wt': workload_type, + 'sub': subscription, + 'default': 'HourlyLogBackup', + 'rg': resource_group, + 'item': item, + 'id': id, + 'item_id': item_id, + 'pit': item_type, + 'policy_new': self.create_random_name('clitest-policy', 24) + }) + + self.kwargs['policy1_json'] = self.cmd('backup policy show -g {rg} -v {vault} -n {policy} --backup-management-type AzureWorkload', checks=[ + self.check('[].name', '[\'{policy}\']'), + self.check('[].resourceGroup', '[\'{rg}\']') + ]).get_output_in_json()[0] + + self.kwargs['policy_json'] = json.dumps(self.kwargs['policy1_json'], separators=(',', ':')).replace('\'', '\\\'').replace('"', '\\"') + + self.cmd("backup policy new -g {rg} -v {vault} --policy {policy_json} --backup-management-type AzureWorkload --workload-type {wt} -n {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('"', '\\"') + + if workload_type == 'MSSQL': + 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} --backup-management-type AzureWorkload', 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) + ]) + + +def test_backup_wl_item(self, container_name1, container_name2, resource_group, vault_name, policy_name, workload_type, subscription, item, id, item_type, item_id): + + self.kwargs.update({ + 'vault': vault_name, + 'name': container_name1, + 'fname': container_name2, + 'policy': policy_name, + 'wt': workload_type, + 'sub': subscription, + 'default': 'HourlyLogBackup', + 'rg': resource_group, + 'item': item, + 'fitem': item.split(';')[-1], + 'id': id, + 'item_id': item_id, + 'pit': item_type + }) + + 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['protectable_item'] = json.dumps(self.cmd('backup protectable-item show -v {vault} -g {rg} --protectable-item-type {pit} -s {fname} -n {item} --workload-type {wt}').get_output_in_json(), separators=(',', ':')).replace('"', '\\"') + + self.cmd('backup protection enable-for-AzureWL -v {vault} -g {rg} -p {policy} --protectable-item {protectable_item}') + + 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 {container1} -n {item} --backup-management-type AzureWorkload', 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_name.lower(), item1_json['id'].lower()) + self.assertIn(container_name2.lower(), item1_json['properties']['containerName'].lower()) + self.assertIn(container_name2.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', 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', 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 {wt}', checks=[ + self.check("length(@)", 1), + self.check("length([?properties.friendlyName == '{fitem}'])", 1) + ]) + + self.cmd('backup item list -g {rg} -v {vault} -c {container1_fullname} --backup-management-type AzureWorkload --workload-type {wt}', checks=[ + self.check("length(@)", 1), + self.check("length([?properties.friendlyName == '{fitem}'])", 1) + ]) + + self.cmd('backup item list -g {rg} -v {vault} --backup-management-type AzureWorkload --workload-type {wt}', checks=[ + self.check("length(@)", 1), + 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', 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').get_output_in_json() + self.assertIn(policy_name.lower(), item1_json['properties']['policyId'].lower()) + + self.cmd('backup protection disable -v {vault} -g {rg} -i {item_id} -y --delete-backup-data true') + + self.cmd('backup container unregister -v {vault} -g {rg} -n {name} -y') + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 0)]) + + +def test_backup_wl_rp(self, container_name, resource_group, vault_name, item_name, workload_type, subscription, item_type, container_name2, policy_name, id, item_id): + + self.kwargs.update({ + 'vault': vault_name, + 'name': container_name, + 'rg': resource_group, + 'fname': container_name2, + 'policy': policy_name, + 'wt': workload_type, + 'sub': subscription, + 'item': item_name, + 'pit': item_type, + 'item_id': item_id, + 'id': id + }) + + 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['protectable_item'] = json.dumps(self.cmd('backup protectable-item show -v {vault} -g {rg} --protectable-item-type {pit} -s {fname} -n {item} --workload-type {wt}').get_output_in_json(), separators=(',', ':')).replace('"', '\\"') + + self.cmd('backup protection enable-for-AzureWL -v {vault} -g {rg} -p {policy} --protectable-item {protectable_item}') + + 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 logchain show -g {rg} -v {vault} -c {name} -i {item} --workload-type {wt}', checks=[ + self.check('[].resourceGroup', '[\'{rg}\']') + ]).get_output_in_json() + self.assertIn(vault_name.lower(), rp1_json[0]['id'].lower()) + self.assertIn(container_name.lower(), rp1_json[0]['id'].lower()) + + rp2_json = self.cmd('backup recoverypoint logchain show -g {rg} -v {vault} -c {name} -i {item} --workload-type {wt}', checks=[ + self.check('[].resourceGroup', '[\'{rg}\']') + ]).get_output_in_json() + self.assertIn(vault_name.lower(), rp2_json[0]['id'].lower()) + self.assertIn(container_name.lower(), rp2_json[0]['id'].lower()) + + self.cmd('backup protection disable -v {vault} -g {rg} -i {item_id} -y --delete-backup-data true') + + self.cmd('backup container unregister -v {vault} -g {rg} -n {name} -y') + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 0)]) + + +def test_backup_wl_protection(self, container_name1, container_name2, resource_group, vault_name, policy_name, workload_type, subscription, item, id, item_type, item_id, backup_entity_friendly_name): + + self.kwargs.update({ + 'vault': vault_name, + 'name': container_name1, + 'fname': container_name2, + 'policy': policy_name, + 'wt': workload_type, + 'sub': subscription, + 'default': 'HourlyLogBackup', + 'rg': resource_group, + 'item': item, + 'fitem': item.split(';')[-1], + 'id': id, + 'item_id': item_id, + 'pit': item_type, + 'entityFriendlyName': backup_entity_friendly_name + }) + + 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['protectable_item'] = json.dumps(self.cmd('backup protectable-item show -v {vault} -g {rg} --protectable-item-type {pit} -s {fname} -n {item} --workload-type {wt}').get_output_in_json(), separators=(',', ':')).replace('"', '\\"') + + self.cmd('backup protection enable-for-AzureWL -v {vault} -g {rg} -p {policy} --protectable-item {protectable_item}', 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_id} -bt Full -rt 1-7-2020 -ec 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_id} -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}') + ]) + + self.cmd('backup protection disable -v {vault} -g {rg} -i {item_id} -y --delete-backup-data true', checks=[ + self.check("properties.entityFriendlyName", '{fitem}'), + self.check("properties.operation", "DeleteBackupData"), + self.check("properties.status", "Completed"), + self.check("resourceGroup", '{rg}') + ]) + + self.cmd('backup container unregister -v {vault} -g {rg} -n {name} -y') + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 0)]) + + +def test_backup_wl_auto_protection(self, container_name1, container_name2, resource_group, vault_name, policy_name, workload_type, subscription, item, id, item_type, item_id, backup_entity_friendly_name): + + self.kwargs.update({ + 'vault': vault_name, + 'name': container_name1, + 'fname': container_name2, + 'policy': policy_name, + 'wt': workload_type, + 'sub': subscription, + 'default': 'HourlyLogBackup', + 'rg': resource_group, + 'item': item, + 'fitem': item.split(';')[-1], + 'id': id, + 'item_id': item_id, + 'pit': item_type, + 'entityFriendlyName': backup_entity_friendly_name + }) + + 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['protectable_item'] = self.cmd('backup protectable-item show -v {vault} -g {rg} --protectable-item-type {pit} -s {fname} -n {item} --workload-type {wt}').get_output_in_json() + + self.kwargs['protectable_item_name'] = self.kwargs['protectable_item']['name'] + + self.kwargs['protectable_item'] = json.dumps(self.kwargs['protectable_item'], separators=(',', ':')).replace('"', '\\"') + + self.cmd('backup protection auto-enable-for-AzureWL -v {vault} -g {rg} -p {policy} --protectable-item {protectable_item}', checks=[ + self.check("status", "True") + ]) + + self.cmd('backup protection disable auto-for-AzureWL -v {vault} -g {rg} -i {protectable_item_name}', checks=[ + self.check("status", "True") + ]) + + self.cmd('backup container unregister -v {vault} -g {rg} -n {name} -y') + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 0)]) + + +def test_backup_wl_protectable_item(self, container_name1, container_name2, resource_group, vault_name, policy_name, workload_type, subscription, item, id, item_type, item_id): + + self.kwargs.update({ + 'vault': vault_name, + 'name': container_name1, + 'fname': container_name2, + 'policy': policy_name, + 'wt': workload_type, + 'sub': subscription, + 'default': 'HourlyLogBackup', + 'rg': resource_group, + 'item': item, + 'id': id, + 'item_id': item_id, + 'pit': item_type, + 'protectable_item_name': 'NEWDB' if workload_type == 'SAPHANA' else '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} -v {vault} --workload-type {wt}', checks=[ + self.check("length([?properties.friendlyName == '{protectable_item_name}'])", 0) + ]) + + self.cmd('backup protectable-item initialize -g {rg} -v {vault} --workload-type {wt} -c {name}') + + self.cmd('backup protectable-item list -g {rg} -v {vault} --workload-type {wt}', checks=[ + self.check("length([?properties.friendlyName == '{protectable_item_name}'])", 1) + ]) + + self.cmd('backup protectable-item show -g {rg} -v {vault} -n {protectable_item_name} --workload-type {wt} --protectable-item-type {pit} -s {fname}', checks=[ + self.check('properties.friendlyName', '{protectable_item_name}'), + self.check('properties.protectableItemType', '{pit}' if workload_type == 'MSSQL' else '{pit_hana}'), + self.check('properties.serverName', '{fname}'), + self.check('resourceGroup', '{rg}') + ]) + + self.cmd('backup container unregister -v {vault} -g {rg} -n {name} -y') + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 0)]) + + +def test_backup_wl_restore(self, container_name1, container_name2, resource_group, vault_name, policy_name, workload_type, subscription, item, id, item_type, item_id, backup_entity_friendly_name, target_type, target_item): + + self.kwargs.update({ + 'vault': vault_name, + 'name': container_name1, + 'fname': container_name2, + 'policy': policy_name, + 'wt': workload_type, + 'sub': subscription, + 'default': 'HourlyLogBackup', + 'rg': resource_group, + 'item': item, + 'fitem': item.split(';')[-1], + 'id': id, + 'item_id': item_id, + 'pit': item_type, + 'entityFriendlyName': backup_entity_friendly_name, + 'tpit': target_type, + 'titem': target_item + }) + + 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['protectable_item'] = json.dumps(self.cmd('backup protectable-item show -v {vault} -g {rg} --protectable-item-type {pit} -s {fname} -n {item} --workload-type {wt}').get_output_in_json(), separators=(',', ':')).replace('"', '\\"') + + self.cmd('backup protection enable-for-AzureWL -v {vault} -g {rg} -p {policy} --protectable-item {protectable_item}', 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_id} -bt Full -rt 1-7-2020 -ec 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['ti'] = json.dumps(self.cmd('backup protectable-item show -v {vault} -g {rg} --protectable-item-type {tpit} -s {fname} -n {titem} --workload-type {wt}').get_output_in_json(), separators=(',', ':')).replace('"', '\\"') + + self.kwargs['rc'] = json.dumps(self.cmd('backup recoveryconfig show -v {vault} -g {rg} -m AlternateWorkloadRestore -r {rp} -i {item} -c {container1} -ti {ti}').get_output_in_json(), separators=(',', ':')) + + self.kwargs['backup_job'] = self.cmd('backup restore restore-azurewl -v {vault} -g {rg} -rc {rc}', 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 -v {vault} -g {rg} -m OriginalWorkloadRestore -i {item} -c {container1} -r {rp}').get_output_in_json(), separators=(',', ':')) + + self.kwargs['backup_job'] = self.cmd('backup restore restore-azurewl -v {vault} -g {rg} -rc {rc}', 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.cmd('backup protection disable -v {vault} -g {rg} -i {item_id} -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}') + ]) + + self.cmd('backup protection disable -v {vault} -g {rg} -i {item_id} -y --delete-backup-data true', checks=[ + self.check("properties.entityFriendlyName", '{fitem}'), + self.check("properties.operation", "DeleteBackupData"), + self.check("properties.status", "Completed"), + self.check("resourceGroup", '{rg}') + ]) + + self.cmd('backup container unregister -v {vault} -g {rg} -n {name} -y') + + self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + self.check("length([?name == '{name}'])", 0)])